[package]
edition = "2021"
rust-version = "1.87"
name = "murk-engine"
version = "0.1.0"
authors = ["John Morrissey"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simulation engine orchestrating Murk environments"
homepage = "https://github.com/tachyon-beep/murk"
documentation = "https://tachyon-beep.github.io/murk/"
readme = "README.md"
keywords = [
"simulation",
"reinforcement",
"arena",
"gymnasium",
"gamedev",
]
categories = [
"simulation",
"science",
"game-development",
]
license = "MIT"
repository = "https://github.com/tachyon-beep/murk"
[lib]
name = "murk_engine"
path = "src/lib.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[example]]
name = "realtime_async"
path = "examples/realtime_async.rs"
[[example]]
name = "replay"
path = "examples/replay.rs"
[[test]]
name = "arena_fragmentation"
path = "tests/arena_fragmentation.rs"
[[test]]
name = "nan_detection"
path = "tests/nan_detection.rs"
[[test]]
name = "stress_death_spiral"
path = "tests/stress_death_spiral.rs"
[[test]]
name = "stress_mass_invalidation"
path = "tests/stress_mass_invalidation.rs"
[[test]]
name = "stress_rejection_oscillation"
path = "tests/stress_rejection_oscillation.rs"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.indexmap]
version = "2"
[dependencies.murk-arena]
version = "0.1.0"
[dependencies.murk-core]
version = "0.1.0"
[dependencies.murk-obs]
version = "0.1.0"
[dependencies.murk-propagator]
version = "0.1.0"
[dependencies.murk-space]
version = "0.1.0"
[dependencies.smallvec]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.smallvec]
version = "1"