[package]
name = "stack-compiler"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
description = "Reference compiler frontend for the Stack diagram language"
homepage = "https://stack-diagram.com/"
repository = "https://github.com/stack-sh/compiler"
documentation = "https://docs.rs/stack-compiler"
readme = "README.md"
publish = ["crates-io"]
include = ["src/**", "tests/**", "Cargo.toml", "README.md", "LICENSE"]
keywords = ["stack", "diagram", "dsl", "compiler"]
categories = ["parser-implementations"]
[lib]
path = "src/lib.rs"
[features]
conformance = []
[[test]]
name = "conformance"
path = "tests/conformance.rs"
required-features = ["conformance"]
[[test]]
name = "language_intelligence_conformance"
path = "tests/language_intelligence_conformance.rs"
required-features = ["conformance"]
[dev-dependencies]
serde_json = "1.0.151"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"