about summary refs log tree commit diff
path: root/tvix/nix-compat/Cargo.toml
blob: 876ac3ecadd05abf5876f51aad0a3b5b467f3560 (plain) (blame)
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
53
54
55
56
[package]
name = "nix-compat"
version = "0.1.0"
edition = "2021"

[features]
# async NAR writer
async = ["tokio"]
# code emitting low-level packets used in the daemon protocol.
wire = ["tokio", "pin-project-lite"]

# Enable all features by default.
default = ["async", "wire"]

[dependencies]
bitflags = "2.4.1"
bstr = { version = "1.6.0", features = ["alloc", "unicode", "serde"] }
data-encoding = "2.3.3"
ed25519 = "2.2.3"
ed25519-dalek = "2.1.0"
enum-primitive-derive = "0.3.0"
glob = "0.3.0"
nom = "7.1.3"
num-traits = "0.2.18"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.6"
thiserror = "1.0.38"

[dependencies.tokio]
optional = true
version = "1.32.0"
features = ["io-util", "macros"]

[dependencies.pin-project-lite]
optional = true
version = "0.2.13"

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
futures = { version = "0.3.30", default-features = false, features = ["executor"] }
hex-literal = "0.4.1"
lazy_static = "1.4.0"
pretty_assertions = "1.4.0"
rstest = "0.19.0"
serde_json = "1.0"
tokio-test = "0.4.3"
zstd = "^0.13.0"

[[bench]]
name = "derivation_parse_aterm"
harness = false

[[bench]]
name = "narinfo_parse"
harness = false