roc/compiler/load/Cargo.toml

30 lines
847 B
TOML
Raw Normal View History

2020-03-07 02:15:23 +03:00
[package]
name = "roc_load"
version = "0.1.0"
authors = ["Richard Feldman <oss@rtfeldman.com>"]
edition = "2018"
2020-05-04 04:37:40 +03:00
license = "Apache-2.0"
2020-03-07 02:15:23 +03:00
[dependencies]
roc_collections = { path = "../collections" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
roc_types = { path = "../types" }
roc_can = { path = "../can" }
roc_constrain = { path = "../constrain" }
roc_builtins = { path = "../builtins" }
roc_problem = { path = "../problem" }
roc_unify = { path = "../unify" }
roc_parse = { path = "../parse" }
roc_solve = { path = "../solve" }
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"
2020-03-07 02:15:23 +03:00
tokio = { version = "0.2", features = ["blocking", "fs", "sync", "rt-threaded"] }
[dev-dependencies]
pretty_assertions = "0.5.1"
2020-03-07 02:15:23 +03:00
maplit = "1.0.1"
indoc = "0.3.3"
quickcheck = "0.8"
quickcheck_macros = "0.8"