-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
52 lines (41 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "btrfsutil"
version = "0.2.0"
authors = ["cezarmathe <me@cezarmathe.com>", "Alex Pearson <alex@alexpear.com>"]
description = "Safe wrappers for libbtrfsutil."
readme = "README.md"
repository = "https://github.com/cezarmathe/btrfsutil-rs"
documentation = "https://docs.rs/btrfsutil/"
license = "MIT"
edition = "2021"
keywords = ["btrfs"]
[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
[lib]
name = "btrfsutil"
path = "src/lib.rs"
[dependencies]
btrfsutil-sys = "1.3.0"
bitflags = "1.2"
chrono = "0.4.11"
thiserror = "1.0"
uuid = "0.8.1"
libc = "0.2.75"
[dev-dependencies]
libmount = "0.1.11"
loopdev = "0.4"
nix = "0.18"
tempfile = "3.0.1"
[features]
default = []
# Enable glue errors. Theoretically, glue errors should not exist, but this feature can give you
# extra reliability. If not enabled, glue errors will make the library panic.
enable-glue-errors = []
# waiting on a new release
# https://github.com/mdaffin/loopdev/issues/65
[patch.crates-io.loopdev]
git = "https://github.com/mulkieran/loopdev"
branch = "bump-bindgen-reduce-version"
[[example]]
name = "subvolume_iterator_info"