aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 43bab4efb1e007301b12e989f600538e27913a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "kdl-schema"
version = "0.1.0"
authors = ["boringcactus / Melody Horn"]
edition = "2021"
description = "schema types & parsing for KDL"
repository = "https://code.boringcactus.com/kdl-schema/"
license = "BlueOak-1.0.0"
keywords = ["kdl"]

[features]
default = ["parse-knuffel"]
parse-knuffel = ["knuffel"]

[dependencies]
knuffel = { version = "2.0.0", optional = true }
lazy_static = "1.4.0"

[dev-dependencies]
miette = { version = "4.4.0", features = ["fancy"] }