Ghee/Cargo.toml

38 lines
813 B
TOML
Raw Normal View History

2023-07-26 01:09:56 +02:00
[package]
2023-08-09 08:46:13 +02:00
name = "ghee"
description = "A command line tool for working with Linux extended attributes (xattrs)"
2023-09-21 00:04:10 +02:00
version = "0.5.1"
2023-07-26 01:09:56 +02:00
edition = "2021"
2023-08-09 08:46:13 +02:00
default-run = "ghee"
license = "GPL-3.0"
2023-08-03 03:57:36 +02:00
build = "build.rs"
2023-07-26 01:09:56 +02:00
[dependencies]
anyhow = "1.0.75"
atty = "0.2.14"
2023-09-21 04:41:56 +02:00
btrfsutil = "0.1.0"
2023-07-26 01:09:56 +02:00
clap = { version = "4.3.19", features = ["derive"] }
lazy_static = "1.4.0"
2023-08-04 23:28:38 +02:00
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"
thiserror = "1.0.44"
2023-08-03 01:47:25 +02:00
walkdir = "2.3.3"
2023-07-26 01:09:56 +02:00
xattr = { version = "1.0.0", default-features = false }
xdg = "2.5.2"
2023-08-03 03:57:36 +02:00
[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
2023-08-15 22:48:13 +02:00
[dev-dependencies]
tempdir = "0.3.7"