mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
29 lines
646 B
TOML
29 lines
646 B
TOML
[package]
|
|
name = "roc_parse"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
"parse_debug_trace" = []
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_region = { path = "../region" }
|
|
roc_module = { path = "../module" }
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
encode_unicode = "0.3.6"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.3.5", features = ["html_reports"] }
|
|
pretty_assertions = "1.0.0"
|
|
indoc = "1.0.3"
|
|
quickcheck = "1.0.3"
|
|
quickcheck_macros = "1.0.0"
|
|
roc_test_utils = { path = "../../test_utils" }
|
|
|
|
[[bench]]
|
|
name = "bench_parse"
|
|
harness = false
|