29 lines
693 B
TOML
29 lines
693 B
TOML
[package]
|
|
name = "terrace"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Terrace is a simple structured data syntax for configuration, content authoring, and DSLs."
|
|
license = "MIT"
|
|
repository = "https://github.com/terrace-lang/terrace"
|
|
homepage = "https://terrace-lang.org"
|
|
keywords = ["parser", "configuration", "dsl", "structured-text"]
|
|
categories = ["parsing", "config"]
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
criterion = "0.5"
|
|
pollster = "0.3"
|
|
|
|
[[bin]]
|
|
name = "test-runner"
|
|
path = "src/test_runner.rs"
|
|
|
|
[[bench]]
|
|
name = "parsing"
|
|
harness = false
|