[package] name = "ghee" description = "A command line tool for working with Linux extended attributes (xattrs)" version = "0.5.1" edition = "2021" default-run = "ghee" license = "GPL-3.0" build = "build.rs" [dependencies] anyhow = "1.0.75" atty = "0.2.14" btrfsutil = { git = "https://github.com/cezarmathe/btrfsutil-rs" } clap = { version = "4.3.19", features = ["derive"] } lazy_static = "1.4.0" nom = "7.1.3" path-absolutize = "3.1.1" rustyline = "12.0.0" serde = { version = "1.0.163", features = ["derive"] } serde_json = "1.0.96" sudo = "0.6.0" thiserror = "1.0.44" walkdir = "2.3.3" xattr = { version = "1.0.0", default-features = false } xdg = "2.5.2" [build-dependencies] clap = { version = "4.3.19", features = ["derive"] } clap_complete = "4.3.2" [profile.release] strip = true opt-level = "z" lto = true codegen-units = 1 [dev-dependencies] tempdir = "0.3.7"