[package]
edition = "2021"
rust-version = "1.88"
name = "truth-engine"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic calendar computation for AI agents: RRULE expansion, availability merging, timezone conversion, and temporal resolution"
readme = "README.md"
keywords = [
"rrule",
"calendar",
"timezone",
"datetime",
"availability",
]
categories = ["date-and-time"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/temporal-cortex/core"
[lib]
name = "truth_engine"
path = "src/lib.rs"
[[test]]
name = "availability_tests"
path = "tests/availability_tests.rs"
[[test]]
name = "conflict_tests"
path = "tests/conflict_tests.rs"
[[test]]
name = "expander_tests"
path = "tests/expander_tests.rs"
[[test]]
name = "freebusy_tests"
path = "tests/freebusy_tests.rs"
[[test]]
name = "prop_expander"
path = "tests/prop_expander.rs"
[[test]]
name = "rfc5545_vectors"
path = "tests/rfc5545_vectors.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.rrule]
version = "0.14"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"