[package]
edition = "2024"
rust-version = "1.88"
name = "tla-eval"
version = "0.2.0"
authors = ["copyleftdev"]
build = false
exclude = [
"tests/evaluate_specs.rs",
"tests/support",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Evaluate TLA+ predicates and actions at concrete states, with no dependencies"
homepage = "https://github.com/copyleftdev/tlatools-rs"
readme = "README.md"
keywords = [
"tlaplus",
"tla",
"interpreter",
"formal-methods",
"verification",
]
categories = [
"development-tools",
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/copyleftdev/tlatools-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "tla_eval"
path = "src/lib.rs"
[[test]]
name = "modules"
path = "tests/modules.rs"
[[test]]
name = "standard_operators"
path = "tests/standard_operators.rs"
[dependencies.tla-syntax]
version = "0.2.0"
[lints.clippy]
missing_errors_doc = "allow"
must_use_candidate = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"