24 lines
555 B
TOML
24 lines
555 B
TOML
[package]
|
|
name = "decodal-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
description = "Command-line interface for the Decodal data description language."
|
|
keywords = ["decodal", "dsl", "config", "cli"]
|
|
categories = ["command-line-utilities", "config"]
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "decodal"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = []
|
|
regex = ["decodal/regex"]
|
|
|
|
[dependencies]
|
|
decodal = { version = "0.1.1", path = "../decodal-core" }
|