[package]
edition = "2021"
name = "organpool"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Organ physics substrate — cardiac and respiratory simulation with autonomic modulation, respiratory sinus arrhythmia, integer-only ion channel dynamics, and real-time vital sign diagnostics"
readme = "README.md"
keywords = [
"neuromorphic",
"cardiac",
"respiratory",
"autonomic",
"organ",
]
categories = [
"science",
"simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Blackfall-Labs/organpool-rs"
[features]
default = ["serde"]
fibertract = ["dep:fibertract"]
serde = ["dep:serde"]
[lib]
name = "organpool"
path = "src/lib.rs"
[[test]]
name = "adversarial_tests"
path = "tests/adversarial_tests.rs"
[[test]]
name = "cardiac_tests"
path = "tests/cardiac_tests.rs"
[[test]]
name = "cardiopulmonary_tests"
path = "tests/cardiopulmonary_tests.rs"
[[test]]
name = "respiratory_tests"
path = "tests/respiratory_tests.rs"
[dependencies.fibertract]
version = "1.0"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.serde_json]
version = "1.0"