2020-05-04 16:28:38 +03:00
|
|
|
[package]
|
2024-01-16 09:41:00 +03:00
|
|
|
name = "bcachefs-tools"
|
2024-08-23 22:38:12 +03:00
|
|
|
version = "1.12.0"
|
2023-11-17 00:33:47 +03:00
|
|
|
authors = ["Yuxuan Shui <yshuiv7@gmail.com>", "Kayla Firestack <dev@kaylafire.me>", "Kent Overstreet <kent.overstreet@linux.dev>" ]
|
|
|
|
edition = "2021"
|
2024-09-03 10:11:18 +03:00
|
|
|
rust-version = "1.77"
|
2020-05-04 16:28:38 +03:00
|
|
|
|
2024-01-16 09:41:00 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "bcachefs"
|
|
|
|
path = "src/bcachefs.rs"
|
|
|
|
|
2024-10-06 05:49:06 +03:00
|
|
|
[features]
|
|
|
|
fuse = []
|
|
|
|
|
2020-05-04 16:28:38 +03:00
|
|
|
[dependencies]
|
2023-04-26 22:50:16 +03:00
|
|
|
log = { version = "0.4", features = ["std"] }
|
2023-01-12 22:35:23 +03:00
|
|
|
clap = { version = "4.0.32", features = ["derive", "wrap_help"] }
|
2023-11-23 21:22:47 +03:00
|
|
|
clap_complete = "4.3.2"
|
2020-05-04 16:28:38 +03:00
|
|
|
anyhow = "1.0"
|
|
|
|
libc = "0.2.69"
|
2023-01-12 22:35:23 +03:00
|
|
|
udev = "0.7.0"
|
|
|
|
uuid = "1.2.2"
|
2020-05-04 16:28:38 +03:00
|
|
|
errno = "0.2"
|
|
|
|
either = "1.5"
|
2023-01-04 06:31:36 +03:00
|
|
|
bch_bindgen = { path = "bch_bindgen" }
|
2024-05-30 19:31:10 +03:00
|
|
|
strum = { version = "0.26", features = ["derive"] }
|
|
|
|
strum_macros = "0.26"
|
2024-05-30 22:42:38 +03:00
|
|
|
zeroize = { version = "1", features = ["std", "zeroize_derive"] }
|
2024-07-09 05:15:20 +03:00
|
|
|
rustix = { version = "0.38.34", features = ["termios"] }
|
2024-07-19 22:34:15 +03:00
|
|
|
owo-colors = "4"
|
2024-06-27 14:40:37 +03:00
|
|
|
|
|
|
|
[dependencies.env_logger]
|
|
|
|
version = "0.10"
|
|
|
|
default-features = false
|
2024-07-14 23:02:22 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = "none"
|