[package]
edition = "2024"
name = "somatize-runtime"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Execution engine for the Soma computational graph runtime"
readme = "README.md"
license = "Elastic-2.0"
repository = "https://github.com/manucouto1/soma"
resolver = "2"
[lib]
name = "somatize_runtime"
path = "src/lib.rs"
[[test]]
name = "agentic_step"
path = "tests/agentic_step.rs"
[[test]]
name = "coverage_boost"
path = "tests/coverage_boost.rs"
[[test]]
name = "fit_determinism"
path = "tests/fit_determinism.rs"
[[test]]
name = "fit_through_run_node"
path = "tests/fit_through_run_node.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "memory_usage"
path = "tests/memory_usage.rs"
[[test]]
name = "pbt_integration"
path = "tests/pbt_integration.rs"
[[test]]
name = "session_steps"
path = "tests/session_steps.rs"
[[test]]
name = "topology"
path = "tests/topology.rs"
[[test]]
name = "tracking"
path = "tests/tracking.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
features = ["float_roundtrip"]
[dependencies.somatize-compiler]
version = "0.5.1"
[dependencies.somatize-core]
version = "0.5.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["sync"]
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"time",
]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]