]> git.sesse.net Git - bcachefs-tools-debian/blob - mount/Cargo.toml
Add upstream files
[bcachefs-tools-debian] / mount / Cargo.toml
1 [package]
2 name = "bcachefs-mount"
3 version = "0.1.0"
4 authors = ["Yuxuan Shui <yshuiv7@gmail.com>"]
5 edition = "2018"
6
7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9 [dependencies]
10 log = "0.4"
11 clap = { version = "2.33", features = [ "wrap_help" ] }
12 env_logger = { version = "0.7", default-features = false }
13 anyhow = "1.0"
14 udev = "0.4"
15 uuid = "0.8"
16 libc = "0.2.69"
17 gag = "0.1"
18 bitfield = "0.13"
19 memoffset = "0.5"
20 getset = "0.1"
21 itertools = "0.9"
22 structopt = "0.3"
23 parse-display = "0.1"
24 errno = "0.2"
25 either = "1.5"
26 rpassword = "4"
27 byteorder = "1.3"
28
29 [lib]
30 crate-type = ["staticlib"]
31
32 [build-dependencies]
33 pkg-config = "0.3"
34 bindgen = { version = "0.53", default-features = false }