[package]
edition = "2024"
rust-version = "1.97"
name = "telosieve"
version = "0.2.0-rc.4"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read-only infrastructure instruction evaluation that refuses when trusted evidence cannot agree"
homepage = "https://kabudu.github.io/telosieve/"
readme = "README.md"
keywords = [
"security",
"verification",
"kubernetes",
"opentofu",
"reconciliation",
]
categories = [
"command-line-utilities",
"development-tools",
"config",
]
license = "Apache-2.0"
repository = "https://github.com/kabudu/telosieve"
[lib]
name = "telosieve"
path = "src/lib.rs"
[[bin]]
name = "telosieve"
path = "src/main.rs"
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"
[[example]]
name = "generate_fixtures"
path = "examples/generate_fixtures.rs"
[[example]]
name = "generate_observation_fixtures"
path = "examples/generate_observation_fixtures.rs"
[[example]]
name = "recovery_benchmark"
path = "examples/recovery_benchmark.rs"
[[example]]
name = "state_space"
path = "examples/state_space.rs"
[[example]]
name = "witness_availability"
path = "examples/witness_availability.rs"
[[example]]
name = "witness_tip_transfer"
path = "examples/witness_tip_transfer.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[[test]]
name = "attestation"
path = "tests/attestation.rs"
[[test]]
name = "bundle_signature_cli"
path = "tests/bundle_signature_cli.rs"
[[test]]
name = "compatibility"
path = "tests/compatibility.rs"
[[test]]
name = "evaluation_cli"
path = "tests/evaluation_cli.rs"
[[test]]
name = "integration_contract"
path = "tests/integration_contract.rs"
[[test]]
name = "kubernetes_live_cli"
path = "tests/kubernetes_live_cli.rs"
[[test]]
name = "m0"
path = "tests/m0.rs"
[[test]]
name = "observation_signature_cli"
path = "tests/observation_signature_cli.rs"
[[test]]
name = "parser_corpora"
path = "tests/parser_corpora.rs"
[[test]]
name = "witness"
path = "tests/witness.rs"
[[test]]
name = "witness_endpoints"
path = "tests/witness_endpoints.rs"
[dependencies.ed25519-dalek]
version = "2.2.0"
[dependencies.hex]
version = "0.4.3"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.142"
[dependencies.sha2]
version = "0.10.9"
[dependencies.thiserror]
version = "2.0.12"
[lints.clippy]
all = "deny"
pedantic = "deny"
[lints.rust]
unsafe_code = "forbid"