[package] name = "erdtree" version = "3.1.2" edition = "2021" authors = ["Benjamin Nguyen "] description = """ erdtree (erd) is a cross-platform, multi-threaded, and general purpose filesystem and disk usage utility that is aware of .gitignore and hidden file rules. """ categories = ["command-line-utilities"] documentation = "https://github.com/solidiquis/erdtree" homepage = "https://github.com/solidiquis/erdtree" repository = "https://github.com/solidiquis/erdtree" keywords = ["tree", "find", "ls", "du", "commandline"] exclude = ["assets/*", "scripts/*", "example/*"] readme = "README.md" license = "MIT" rust-version = "1.78.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "erd" path = "src/main.rs" [lints.clippy] cast_precision_loss = "allow" struct_excessive_bools = "allow" wildcard_imports = "allow" obfuscated_if_else = "allow" [dependencies] ahash = "0.8.11" ansi_term = "0.12.1" anyhow = "1.0.75" chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] } clap = { version = "4.5.4", features = ["derive"] } clap_complete = "4.1.1" config = { version = "0.14.0", default-features = false, features = ["toml"] } crossterm = "0.27.0" ctrlc = "3.4.4" dirs = "5.0" errno = "0.3.1" filesize = "0.2.0" ignore = "0.4.22" indextree = "4.6.0" lscolors = { version = "0.17.0", features = ["ansi_term"] } once_cell = "1.19.0" regex = "1.10.4" terminal_size = "0.3.0" thiserror = "1.0.40" toml = "0.8.8" [target.'cfg(unix)'.dependencies] libc = "0.2.141" [target.'cfg(windows)'.dependencies] winapi = "0.3.9" [dev-dependencies] indoc = "2.0.0" strip-ansi-escapes = "0.1.1" tempfile = "3.4.0"