[package]
edition = "2024"
name = "smc_scan"
version = "0.1.0"
build = false
exclude = [
"scan_book/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Statistical model checker for large concurrent systems."
homepage = "https://convince-project.github.io/scan/"
documentation = "https://convince-project.github.io/scan/crates/scan/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"
crate-type = ["lib"]
path = "src/lib.rs"
[[bin]]
name = "scan"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.clap-verbosity-flag]
version = "3.0.4"
[dependencies.env_logger]
version = "0.11.10"
[dependencies.human-panic]
version = "2.0.7"
[dependencies.indicatif]
version = "0.18.4"
features = ["improved_unicode"]
[dependencies.log]
version = "0.4.29"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.smc_scan_core]
version = "0.1.0"
[dependencies.smc_scan_jani]
version = "0.1.0"
[dependencies.smc_scan_promela]
version = "0.1.0"
[dependencies.smc_scan_scxml]
version = "0.1.0"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"