[package]
edition = "2024"
name = "somatize-core"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and traits for the Soma computational graph runtime"
readme = "README.md"
license = "Elastic-2.0"
repository = "https://github.com/manucouto1/soma"
resolver = "2"
[lib]
name = "somatize_core"
path = "src/lib.rs"
[[test]]
name = "derive_filter"
path = "tests/derive_filter.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ciborium]
version = "0.2"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
features = ["float_roundtrip"]
[dependencies.sha2]
version = "0.10"
[dependencies.somatize-macros]
version = "0.4.0"
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"