[package]
edition = "2024"
rust-version = "1.85"
name = "saddle-runtime"
version = "0.2.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Saddle managed asynchronous runtime and lifecycle"
documentation = "https://docs.rs/saddle-runtime"
readme = false
license = "MIT OR Apache-2.0"
[lib]
name = "saddle_runtime"
path = "src/lib.rs"
[[bin]]
name = "thread_control_probe"
path = "src/bin/thread_control_probe.rs"
[[example]]
name = "production_fact"
path = "examples/production_fact.rs"
[dependencies.saddle-core]
version = "=0.2.0"
[dependencies.tokio]
version = "1.46"
features = [
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dev-dependencies.saddle-admission]
version = "=0.2.0"
features = ["internal-test-fixture"]
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dependencies.saddle-admission]
version = "=0.2.0"
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dependencies.saddle-observability]
version = "=0.2.0"
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dependencies.serde]
version = "1"
features = ["derive"]
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dependencies.serde_json]
version = "1"
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dependencies.sha2]
version = "0.10"
[lints.rust]
unsafe_code = "forbid"