[package]
edition = "2021"
name = "insign"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Insign: a tiny DSL for Minecraft build regions & metadata"
readme = "README.md"
keywords = [
"minecraft",
"dsl",
"schematics",
"regions",
"metadata",
]
categories = [
"parsing",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Schem-at/Insign"
[features]
boolean_ops = []
default = []
[lib]
name = "insign"
path = "src/lib.rs"
[[bin]]
name = "insign-cli"
path = "src/bin/insign-cli.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "feature_boolean_ops"
path = "tests/feature_boolean_ops.rs"
[[test]]
name = "feature_boolean_ops_enabled"
path = "tests/feature_boolean_ops_enabled.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"