[package]
edition = "2021"
rust-version = "1.70"
name = "behavior-contracts"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Language-neutral IR runtime core (expression evaluation, template rendering, execution plan, canonical serialization) shared across DSL implementations. Passes the dsl-contracts conformance vectors byte-for-byte."
homepage = "https://github.com/foo-ogawa/behavior-contracts"
readme = "README.md"
keywords = [
"ir",
"runtime",
"canonical",
"serialization",
"dsl",
]
categories = [
"data-structures",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/foo-ogawa/behavior-contracts"
[features]
default = ["ir"]
ir = ["dep:serde_json"]
[lib]
name = "behavior_contracts"
path = "src/lib.rs"
[[bin]]
name = "conformance"
path = "src/bin/conformance.rs"
required-features = ["ir"]
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "plan_parallel"
path = "tests/plan_parallel.rs"
[[test]]
name = "primitives"
path = "tests/primitives.rs"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
optional = true