[package]
edition = "2024"
name = "sim-lib-pattern"
version = "0.2.0"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shape-based pattern matching and destructuring for SIM runtime values."
homepage = "https://github.com/sim-nest/sim-runtime"
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/sim-nest/sim-runtime"
[lib]
name = "sim_lib_pattern"
path = "src/lib.rs"
[[test]]
name = "cross_dialect_safety"
path = "tests/cross_dialect_safety.rs"
[[test]]
name = "cursor_domains"
path = "tests/cursor_domains.rs"
[[test]]
name = "ir_contract"
path = "tests/ir_contract.rs"
[[test]]
name = "legacy_lowering"
path = "tests/legacy_lowering.rs"
[[test]]
name = "ownership_guard"
path = "tests/ownership_guard.rs"
[dependencies.sim-citizen]
version = "0.2.0"
[dependencies.sim-citizen-derive]
version = "0.2.0"
[dependencies.sim-cookbook]
version = "0.2.0"
[dependencies.sim-kernel]
version = "0.2.1"
[dependencies.sim-shape]
version = "0.2.3"
[dependencies.sim-text]
version = "0.1.0"
[dev-dependencies.sim-lib-standard-core]
version = "0.1.4"
[build-dependencies.sim-cookbook]
version = "0.2.0"
[lints.rust]
unsafe_code = "forbid"