[package]
edition = "2024"
name = "mstlo"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for online monitoring of Signal Temporal Logic (STL) specifications."
homepage = "https://github.com/INTO-CPS-Association/mstlo"
documentation = "https://docs.rs/mstlo"
readme = "README.md"
keywords = [
"stl",
"monitoring",
"temporal-logic",
"cps",
]
categories = [
"science",
"mathematics",
]
license-file = "LICENSE"
repository = "https://github.com/INTO-CPS-Association/mstlo"
[features]
default = []
track-cache-size = []
[lib]
name = "mstlo"
path = "src/lib.rs"
[[example]]
name = "intro_example"
path = "examples/intro_example.rs"
[[example]]
name = "simple_example"
path = "examples/simple_example.rs"
[[example]]
name = "variables_example"
path = "examples/variables_example.rs"
[[test]]
name = "macros_test"
path = "tests/macros_test.rs"
[[test]]
name = "monitor_build_fail_test"
path = "tests/monitor_build_fail_test.rs"
[[test]]
name = "monitor_rosi_test"
path = "tests/monitor_rosi_test.rs"
[[test]]
name = "monitor_signal_sync_test"
path = "tests/monitor_signal_sync_test.rs"
[[test]]
name = "monitor_test"
path = "tests/monitor_test.rs"
[[test]]
name = "parser_parity_test"
path = "tests/parser_parity_test.rs"
[[bench]]
name = "monitor_benchmark"
path = "benches/monitor_benchmark.rs"
harness = false
[[bench]]
name = "paper_benchmark"
path = "benches/paper_benchmark.rs"
harness = false
[dependencies.dyn-clone]
version = "1.0.20"
[dependencies.mstlo-macros]
version = "0.1.0"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.rand]
version = "0.10.0"
[dev-dependencies.rand_distr]
version = "0.6.0"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.rumqttc]
version = "0.25.1"
[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.149"