[package]
edition = "2021"
name = "anysystem"
version = "0.2.0"
build = false
include = [
"/src",
"/python/anysystem.py",
"/tests",
"/examples",
"LICENSE*",
"changelog.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A framework for deterministic simulation and testing of distributed systems"
homepage = "https://github.com/osukhoroslov/anysystem"
readme = "readme.md"
keywords = [
"distributed-systems",
"message-passing",
"simulation",
"testing",
"model-checking",
]
categories = [
"simulation",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/osukhoroslov/anysystem"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "anysystem"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "test_mc"
path = "tests/test_mc.rs"
[[test]]
name = "test_python_mc"
path = "tests/test_python_mc.rs"
[dependencies.colored]
version = "2"
[dependencies.downcast-rs]
version = "1.2"
[dependencies.dyn-clone]
version = "1"
[dependencies.indexmap]
version = "2.12"
[dependencies.lazy_static]
version = "1.5"
[dependencies.log]
version = "0.4"
[dependencies.ordered-float]
version = "4.2"
features = ["serde"]
[dependencies.pyo3]
version = "0.29"
features = ["auto-initialize"]
[dependencies.rand]
version = "0.8"
[dependencies.rand_pcg]
version = "0.3"
[dependencies.regex]
version = "1.10"
[dependencies.rstest]
version = "0.21"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.simcore]
version = "0.1"
[dependencies.sugars]
version = "3"