[package]
edition = "2024"
rust-version = "1.94"
name = "organism-simulation"
version = "1.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simulation swarm for Organism — multi-dimension stress-testing before commit"
readme = false
license = "MIT"
repository = "https://github.com/Reflective-Lab/organism"
[lib]
name = "organism_simulation"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.converge-pack]
version = "3.7.3"
[dependencies.organism-planning]
version = "1.4.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
new_without_default = "allow"
return_self_not_must_use = "allow"
should_implement_trait = "allow"
unused_async = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"