[package]
edition = "2024"
rust-version = "1.88"
name = "axioval-engine"
version = "0.1.13"
authors = ["Axioval contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Trusted capability compiler and deterministic source-neutral validation runtime"
readme = "README.md"
license = "AGPL-3.0-or-later"
repository = "https://github.com/axioval/engine"
resolver = "2"
[lib]
name = "axioval_engine"
path = "src/lib.rs"
[[test]]
name = "evidence_session"
path = "tests/evidence_session.rs"
[[test]]
name = "free_space"
path = "tests/free_space.rs"
[[test]]
name = "metric_routing"
path = "tests/metric_routing.rs"
[[test]]
name = "property_resolution"
path = "tests/property_resolution.rs"
[[test]]
name = "relationship_selection"
path = "tests/relationship_selection.rs"
[[test]]
name = "runtime"
path = "tests/runtime.rs"
[[test]]
name = "services"
path = "tests/services.rs"
[[test]]
name = "topology"
path = "tests/topology.rs"
[[test]]
name = "walkability"
path = "tests/walkability.rs"
[dependencies.axioval-ir]
version = "0.1.13"
[dependencies.indexmap]
version = "2.11.0"
features = ["serde"]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.143"
[dependencies.thiserror]
version = "2.0.16"
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.uuid]
version = "1.18.1"
features = [
"serde",
"v5",
]
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"