[package]
edition = "2024"
rust-version = "1.88"
name = "tlatools"
version = "0.1.0"
authors = ["copyleftdev"]
build = false
exclude = ["tests/cli.rs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read, format and check TLA+ specifications from the command line"
homepage = "https://github.com/copyleftdev/tlatools-rs"
readme = "README.md"
keywords = [
"tlaplus",
"tla",
"formal-methods",
"verification",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
"science",
]
license = "MIT"
repository = "https://github.com/copyleftdev/tlatools-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[[bin]]
name = "tlatools"
path = "src/main.rs"
[dependencies.serde_json]
version = "1"
[dependencies.tla-oracle]
version = "0.1.0"
[dependencies.tla-syntax]
version = "0.1.0"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tla-syntax]
version = "0.1.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"