[package] name = "roc_parse" version = "0.0.1" authors = ["The Roc Contributors"] license = "UPL-1.0" edition = "2021" description = "Implements the Roc parser, which transforms a textual representation of a Roc program to an AST." [features] "parse_debug_trace" = [] [dependencies] roc_collections = { path = "../collections" } roc_region = { path = "../region" } roc_module = { path = "../module" } bumpalo.workspace = true encode_unicode.workspace = true [dev-dependencies] roc_test_utils = { path = "../../test_utils" } proptest = "1.0.0" criterion.workspace = true pretty_assertions.workspace = true indoc.workspace = true quickcheck.workspace = true quickcheck_macros.workspace = true [[bench]] name = "bench_parse" harness = false