[package]
edition = "2024"
rust-version = "1.89.0"
name = "sui-spec"
version = "0.1.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative Lisp-authored specs for CppNix-parity behaviors. Rust types are the hard boundary; Lisp forms are the free-middle authoring surface. Both engines (tree-walker + VM) drive the same spec, so they cannot drift."
readme = false
keywords = [
"nix",
"parity",
"testing",
"lisp",
"tatara",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/pleme-io/sui"
[lib]
name = "sui_spec"
path = "src/lib.rs"
[[bin]]
name = "sui-spec-inventory"
path = "src/bin/sui-spec-inventory.rs"
[[bin]]
name = "sui-sweep"
path = "src/bin/sui-sweep.rs"
[[test]]
name = "ast_graph_real_world"
path = "tests/ast_graph_real_world.rs"
[[test]]
name = "cli_coverage_invariants"
path = "tests/cli_coverage_invariants.rs"
[[test]]
name = "coverage_at_100"
path = "tests/coverage_at_100.rs"
[[test]]
name = "hash_conversion_matrix"
path = "tests/hash_conversion_matrix.rs"
[[test]]
name = "http_transport_properties"
path = "tests/http_transport_properties.rs"
[[test]]
name = "interpreter_properties"
path = "tests/interpreter_properties.rs"
[[test]]
name = "lockfile_graph_real_world"
path = "tests/lockfile_graph_real_world.rs"
[[test]]
name = "module_compiler_real_world"
path = "tests/module_compiler_real_world.rs"
[[test]]
name = "module_solver_e2e"
path = "tests/module_solver_e2e.rs"
[[test]]
name = "nar_properties"
path = "tests/nar_properties.rs"
[[test]]
name = "nar_round_trip_properties"
path = "tests/nar_round_trip_properties.rs"
[[test]]
name = "operator_view_contract"
path = "tests/operator_view_contract.rs"
[[test]]
name = "operator_view_fuzz"
path = "tests/operator_view_fuzz.rs"
[[test]]
name = "per_domain_invariants"
path = "tests/per_domain_invariants.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "registry_roundtrip"
path = "tests/registry_roundtrip.rs"
[[test]]
name = "store_query_analyze_properties"
path = "tests/store_query_analyze_properties.rs"
[[test]]
name = "store_transform_properties"
path = "tests/store_transform_properties.rs"
[[test]]
name = "substrate_cross_domain"
path = "tests/substrate_cross_domain.rs"
[[test]]
name = "substrate_invariants"
path = "tests/substrate_invariants.rs"
[[test]]
name = "sui_vs_nix_parity"
path = "tests/sui_vs_nix_parity.rs"
[[test]]
name = "sweep_e2e"
path = "tests/sweep_e2e.rs"
[[test]]
name = "wide_tooling_verification"
path = "tests/wide_tooling_verification.rs"
[dependencies.base64]
version = "0.22"
[dependencies.blake3]
version = "1"
[dependencies.bytecheck]
version = "0.8"
[dependencies.flate2]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.rkyv]
version = "0.8"
features = [
"std",
"bytecheck",
"alloc",
]
default-features = false
[dependencies.rnix]
version = "0.14"
[dependencies.rowan]
version = "0.16"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.sui-compat]
version = "0.1.10"
[dependencies.tar]
version = "0.4"
[dependencies.tatara-lisp]
version = "0.2.1"
[dependencies.tatara-lisp-derive]
version = "0.2.1"
[dependencies.thiserror]
version = "2"
[dependencies.ureq]
version = "3"
[dependencies.url]
version = "2"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.clippy]
pedantic = "warn"