roc/compiler/parse/Cargo.toml

21 lines
486 B
TOML
Raw Normal View History

[package]
name = "roc_parse"
version = "0.1.0"
authors = ["Richard Feldman <oss@rtfeldman.com>"]
edition = "2018"
2020-05-04 04:37:40 +03:00
license = "Apache-2.0"
[dependencies]
roc_collections = { path = "../collections" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
2020-03-07 19:20:35 +03:00
bumpalo = { version = "3.2", features = ["collections"] }
2020-06-01 03:13:43 +03:00
inlinable_string = "0.1"
encode_unicode = "0.3"
[dev-dependencies]
pretty_assertions = "0.5.1"
indoc = "0.3.3"
quickcheck = "0.8"
quickcheck_macros = "0.8"