[package]
edition = "2024"
name = "fallow-cli"
version = "1.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for the fallow dead code analyzer"
homepage = "https://fallow.tools"
documentation = "https://docs.fallow.tools"
readme = "README.md"
keywords = [
"dead-code",
"javascript",
"typescript",
"lint",
"static-analysis",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/fallow-rs/fallow"
resolver = "2"
[lib]
name = "fallow_cli"
path = "src/lib.rs"
[[bin]]
name = "fallow"
path = "src/main.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.fallow-config]
version = "1.0.2"
[dependencies.fallow-core]
version = "1.0.2"
[dependencies.indicatif]
version = "0.18"
[dependencies.json_comments]
version = "0.2"
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.notify]
version = "8"
[dependencies.notify-debouncer-mini]
version = "0.7"
[dependencies.rayon]
version = "1"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.toml]
version = "1.0"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cognitive_complexity = "warn"
dbg_macro = "warn"
if_not_else = "allow"
items_after_statements = "allow"
missing_const_for_fn = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "warn"
print_stderr = "warn"
print_stdout = "warn"
redundant_closure_for_method_calls = "allow"
redundant_pub_crate = "warn"
similar_names = "allow"
single_match_else = "allow"
todo = "warn"
too_many_lines = "allow"
unnecessary_fallible_conversions = "warn"
unnested_or_patterns = "allow"
use_self = "warn"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"