Decodal/crates/decodal-core/Cargo.toml

20 lines
582 B
TOML

[package]
name = "decodal-core"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
description = "Core parser, evaluator, and embedding API for the Decodal data description language."
keywords = ["decodal", "dsl", "config", "schema"]
categories = ["config", "parser-implementations"]
[features]
default = ["std"]
std = []
regex = ["std", "dep:regex"]
[dependencies]
regex = { version = "1.10", default-features = false, features = ["std", "unicode-perl"], optional = true }