[package]
edition = "2024"
name = "smc_scan_core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core module for the Scan model checker."
homepage = "https://convince-project.github.io/scan/"
documentation = "https://convince-project.github.io/scan/crates/scan_core/index.html"
readme = "README.md"
keywords = [
"verification",
"model-checking",
]
categories = [
"compilers",
"concurrency",
"parser-implementations",
"science::robotics",
"simulation",
]
license = "Apache-2.0"
repository = "https://github.com/convince-project/scan"
[lib]
name = "scan_core"
crate-type = ["lib"]
path = "src/lib.rs"
[[test]]
name = "counter"
path = "tests/counter.rs"
[[bench]]
name = "program_graph"
path = "benches/program_graph.rs"
harness = false
[dependencies.log]
version = "0.4.29"
[dependencies.rand]
version = "0.10.0"
[dependencies.rayon]
version = "1.11.0"
[dependencies.smallvec]
version = "1.15.1"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.criterion]
version = "0.8.2"