-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 934 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 934 Bytes
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
[package]
name = "zub-store"
version = "0.0.3"
edition = "2021"
description = "Git-like content-addressed filesystem store with metadata preservation"
license = "MIT"
repository = "https://github.com/wegel/zub"
readme = "README.md"
keywords = ["filesystem", "content-addressed", "ostree", "rootfs", "deduplication"]
categories = ["filesystem", "command-line-utilities"]
[lib]
name = "zub"
path = "src/lib.rs"
[[bin]]
name = "zub"
path = "src/main.rs"
[dependencies]
blake3 = "1.5"
hex = "0.4"
zstd = "0.13"
serde = { version = "1", features = ["derive"] }
ciborium = "0.2"
toml = "0.8"
thiserror = "2"
walkdir = "2"
nix = { version = "0.30", features = ["fs", "user"] }
xattr = "1"
uuid = { version = "1", features = ["v4"] }
glob = "0.3"
rayon = "1.10"
[dependencies.clap]
version = "4"
features = ["derive", "env"]
optional = true
[features]
default = ["cli"]
cli = ["clap"]
[dev-dependencies]
tempfile = "3"
serde_json = "1"