[package]
edition = "2024"
rust-version = "1.94"
name = "rto-exec"
version = "1.15.0"
authors = ["The Roteiro Project Team"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Analyzer execution contract for Roteiro: one normalized findings result whether ingested from a CI report or produced by a future sandboxed run"
homepage = "https://roteiro.dev"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/OffeneDatenmodellierung/Roteiro"
[features]
default = []
exec-boxlite = [
"dep:boxlite",
"dep:tokio",
"dep:futures",
]
exec-subprocess = []
[lib]
name = "rto_exec"
path = "src/lib.rs"
[[test]]
name = "backend_parity"
path = "tests/backend_parity.rs"
[[test]]
name = "build_script_fetch_audit"
path = "tests/build_script_fetch_audit.rs"
[[test]]
name = "dependency_axis"
path = "tests/dependency_axis.rs"
[[test]]
name = "equivalence"
path = "tests/equivalence.rs"
[[test]]
name = "ingest_to_store"
path = "tests/ingest_to_store.rs"
[[test]]
name = "offline"
path = "tests/offline.rs"
[[test]]
name = "polyglot"
path = "tests/polyglot.rs"
[[test]]
name = "runtime_pin_integrity"
path = "tests/runtime_pin_integrity.rs"
[dependencies.boxlite]
version = "=0.9.7"
optional = true
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.rto-graph]
version = "1.15.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = ["rt"]
optional = true
[build-dependencies.sha2]
version = "0.11"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"