[package]
edition = "2024"
name = "trellis-core"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic reactive resource graph core types."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/pablof7z/trellis"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "trellis_core"
path = "src/lib.rs"
[[test]]
name = "audit_causes"
path = "tests/audit_causes.rs"
[[test]]
name = "audit_observability"
path = "tests/audit_observability.rs"
[[test]]
name = "collection_boundaries"
path = "tests/collection_boundaries.rs"
[[test]]
name = "collections"
path = "tests/collections.rs"
[[test]]
name = "debug_dump"
path = "tests/debug_dump.rs"
[[test]]
name = "dependencies"
path = "tests/dependencies.rs"
[[test]]
name = "derived"
path = "tests/derived.rs"
[[test]]
name = "derived_failures"
path = "tests/derived_failures.rs"
[[test]]
name = "error_status"
path = "tests/error_status.rs"
[[test]]
name = "identity"
path = "tests/identity.rs"
[[test]]
name = "materialized_outputs"
path = "tests/materialized_outputs.rs"
[[test]]
name = "oracle_model"
path = "tests/oracle_model.rs"
[[test]]
name = "resource_plan_boundaries"
path = "tests/resource_plan_boundaries.rs"
[[test]]
name = "resource_plans"
path = "tests/resource_plans.rs"
[[test]]
name = "scope_teardown"
path = "tests/scope_teardown.rs"
[[test]]
name = "scopes"
path = "tests/scopes.rs"
[[test]]
name = "thread_safety"
path = "tests/thread_safety.rs"
[[test]]
name = "transaction_phases"
path = "tests/transaction_phases.rs"
[[test]]
name = "transaction_trace"
path = "tests/transaction_trace.rs"
[[test]]
name = "transactions"
path = "tests/transactions.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true