[package]
edition = "2021"
rust-version = "1.88"
name = "tt-plan-core"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plan replay engine — deterministic simulation with bootstrap confidence intervals."
readme = false
license = "Apache-2.0"
repository = "https://github.com/tokentrimmer/tokentrimmer"
[lib]
name = "tt_plan_core"
path = "src/lib.rs"
[[test]]
name = "bootstrap"
path = "tests/bootstrap.rs"
[[test]]
name = "l2_projection"
path = "tests/l2_projection.rs"
[[test]]
name = "quality"
path = "tests/quality.rs"
[[test]]
name = "replay"
path = "tests/replay.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tt-shared]
version = "0.1"
[dependencies.tt-telemetry]
version = "0.1"
[dependencies.uuid]
version = "1.11"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.insta]
version = "1.40"
features = [
"json",
"yaml",
"redactions",
]
[dev-dependencies.tokio]
version = "1.40"
features = [
"full",
"macros",
"rt",
]
[dev-dependencies.tt-routing]
version = "0.1"
[lints.clippy]
uninlined_format_args = "deny"
[lints.rust]
unsafe_code = "forbid"