[package]
edition = "2021"
rust-version = "1.75.0"
name = "effect-runtime"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed side-effect intent, execution receipt, and policy primitives for RecursiveIntell runtime gates"
readme = "README.md"
license = "MIT"
[lib]
name = "effect_runtime"
path = "src/lib.rs"
[[test]]
name = "builders_and_validation"
path = "tests/builders_and_validation.rs"
[[test]]
name = "fixture_conformance"
path = "tests/fixture_conformance.rs"
[[test]]
name = "proptest_builders"
path = "tests/proptest_builders.rs"
[[test]]
name = "serde_roundtrip"
path = "tests/serde_roundtrip.rs"
[[test]]
name = "v25_citation_flow"
path = "tests/v25_citation_flow.rs"
[dependencies.chrono]
version = "0.4.44"
[dependencies.schemars]
version = "0.8.22"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.stack-ids]
version = "0.1.1"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.serde_json]
version = "1.0.149"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.expect_used]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"