22 lines
688 B
TOML
22 lines
688 B
TOML
[package]
|
|
name = "decodal"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
description = "Parser, evaluator, and embedding API for the Decodal data description language."
|
|
keywords = ["decodal", "dsl", "config", "schema"]
|
|
categories = ["config", "parser-implementations"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
derive = ["dep:decodal-derive"]
|
|
regex = ["std", "dep:regex"]
|
|
|
|
[dependencies]
|
|
decodal-derive = { version = "0.1.1", path = "../decodal-derive", optional = true }
|
|
regex = { version = "1.10", default-features = false, features = ["std", "unicode-perl"], optional = true }
|