[package]
edition = "2021"
rust-version = "1.94.0"
name = "rustsim-core"
version = "0.0.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core ABM engine: agents, models, stores, schedulers, stepping, data collection"
readme = false
keywords = [
"abm",
"agent-based",
"simulation",
"scheduler",
"model",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/rustsim/rustsim"
[lib]
name = "rustsim_core"
path = "src/lib.rs"
[[test]]
name = "avoidance_tests"
path = "tests/avoidance_tests.rs"
[[test]]
name = "collect_tests"
path = "tests/collect_tests.rs"
[[test]]
name = "determinism_tests"
path = "tests/determinism_tests.rs"
[[test]]
name = "ergonomics_tests"
path = "tests/ergonomics_tests.rs"
[[test]]
name = "event_queue_error_tests"
path = "tests/event_queue_error_tests.rs"
[[test]]
name = "event_queue_tests"
path = "tests/event_queue_tests.rs"
[[test]]
name = "interaction_error_tests"
path = "tests/interaction_error_tests.rs"
[[test]]
name = "interaction_tests"
path = "tests/interaction_tests.rs"
[[test]]
name = "invariant_tests"
path = "tests/invariant_tests.rs"
[[test]]
name = "julia_parity_tests"
path = "tests/julia_parity_tests.rs"
[[test]]
name = "million_agent_stress"
path = "tests/million_agent_stress.rs"
[[test]]
name = "pedestrian_corridor"
path = "tests/pedestrian_corridor.rs"
[[test]]
name = "scheduler_tests"
path = "tests/scheduler_tests.rs"
[[test]]
name = "soak_scale_tests"
path = "tests/soak_scale_tests.rs"
[[test]]
name = "support"
path = "tests/support.rs"
[[bench]]
name = "step_bench"
path = "benches/step_bench.rs"
harness = false
[[bench]]
name = "store_bench"
path = "benches/store_bench.rs"
harness = false
[dependencies.hashbrown]
version = "0.14"
[dependencies.rand]
version = "0.8"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]