a5fcfd80a1
The external feature flag was there because I couldn't find a way to refer to crate and nix-compat with the same name so that the generated code could be the same. In essence `use nix_compat::nix_daemon:🇩🇪:NixDeserialize` is an error when used inside nix_compat crate. So my best fix was the external feature flag until I found the solution used here which also removes the flag completely. Change-Id: Ia3e89c6c350c3fb22ca87f974a39c21542aae152 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12376 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Autosubmit: Brian Olsen <me@griff.name>
69 lines
1.5 KiB
TOML
69 lines
1.5 KiB
TOML
[package]
|
|
name = "nix-compat"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
# async NAR writer. Also needs the `wire` feature.
|
|
async = ["tokio"]
|
|
# code emitting low-level packets used in the daemon protocol.
|
|
wire = ["tokio", "pin-project-lite", "bytes"]
|
|
test = []
|
|
|
|
# Enable all features by default.
|
|
default = ["async", "wire", "nix-compat-derive"]
|
|
|
|
[dependencies]
|
|
bitflags = "2.4.1"
|
|
bstr = { version = "1.6.0", features = ["alloc", "unicode", "serde"] }
|
|
data-encoding = "2.6.0"
|
|
ed25519 = "2.2.3"
|
|
ed25519-dalek = "2.1.0"
|
|
enum-primitive-derive = "0.3.0"
|
|
glob = "0.3.0"
|
|
mimalloc = "0.1.43"
|
|
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"
|
|
tracing = "0.1.37"
|
|
|
|
[dependencies.bytes]
|
|
optional = true
|
|
version = "1.6.1"
|
|
|
|
[dependencies.nix-compat-derive]
|
|
path = "../nix-compat-derive"
|
|
optional = true
|
|
|
|
[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"
|
|
mimalloc = "0.1.43"
|
|
pretty_assertions = "1.4.0"
|
|
rstest = "0.19.0"
|
|
serde_json = "1.0"
|
|
smol_str = "0.2.2"
|
|
tokio-test = "0.4.3"
|
|
zstd = "^0.13.0"
|
|
|
|
[[bench]]
|
|
name = "derivation_parse_aterm"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "narinfo_parse"
|
|
harness = false
|