[package]
edition = "2024"
rust-version = "1.89.0"
name = "sui-compat"
version = "0.1.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Clean-room Nix format and protocol compatibility layer (NAR, store paths, ATerm, derivations)"
readme = false
keywords = [
"nix",
"nar",
"store-path",
"aterm",
"derivation",
]
categories = [
"parser-implementations",
"encoding",
]
license = "MIT"
repository = "https://github.com/pleme-io/sui"
[lib]
name = "sui_compat"
path = "src/lib.rs"
[[test]]
name = "flake_lock_parity"
path = "tests/flake_lock_parity.rs"
[[test]]
name = "fuzz_lite"
path = "tests/fuzz_lite.rs"
[[test]]
name = "nar_parity"
path = "tests/nar_parity.rs"
[[test]]
name = "store_path_parity"
path = "tests/store_path_parity.rs"
[[bench]]
name = "nar"
path = "benches/nar.rs"
harness = false
[[bench]]
name = "store_path"
path = "benches/store_path.rs"
harness = false
[dependencies.base64]
version = "0.22"
[dependencies.ed25519-dalek]
version = "2"
features = [
"std",
"rand_core",
]
[dependencies.nix-nar]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"