[package]
edition = "2021"
name = "scouter-state"
version = "0.21.0"
authors = ["Steven Forrester <sjforrester32@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Holds global state for managing python and rust interop"
readme = false
license = "MIT"
repository = "https://github.com/demml/scouter"
[lib]
name = "scouter_state"
path = "src/lib.rs"
[dependencies.thiserror]
version = "2.*"
[dependencies.tokio]
version = "1.*"
features = [
"rt",
"rt-multi-thread",
"macros",
"signal",
]
[dependencies.tracing]
version = "0.*"
[profile.release]
lto = "fat"
codegen-units = 1
strip = true