mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 15:03:46 +00:00
26 lines
676 B
TOML
26 lines
676 B
TOML
[package]
|
|
name = "test_syntax"
|
|
description = "Tests for the parse + fmt crates."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[features]
|
|
"parse_debug_trace" = ["roc_parse/parse_debug_trace"]
|
|
|
|
[dependencies]
|
|
bumpalo.workspace = true
|
|
roc_collections = { path = "../collections" }
|
|
roc_fmt = { path = "../fmt" }
|
|
roc_module = { path = "../module" }
|
|
roc_parse = { path = "../parse" }
|
|
roc_region = { path = "../region" }
|
|
roc_test_utils = { path = "../../test_utils" }
|
|
roc_test_utils_dir = { path = "../../test_utils_dir" }
|
|
|
|
[dev-dependencies]
|
|
indoc.workspace = true
|
|
pretty_assertions.workspace = true
|
|
walkdir.workspace = true
|