roc/compiler/solve/Cargo.toml

36 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "roc_solve"
version = "0.1.0"
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
license = "UPL-1.0"
2021-04-10 15:07:38 +03:00
edition = "2018"
[dependencies]
roc_collections = { path = "../collections" }
2022-04-12 22:36:36 +03:00
roc_error_macros = { path = "../../error_macros" }
roc_exhaustive = { path = "../exhaustive" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
roc_types = { path = "../types" }
roc_can = { path = "../can" }
roc_problem = { path = "../problem" }
roc_unify = { path = "../unify" }
2022-05-05 19:06:09 +03:00
roc_debug_flags = { path = "../debug_flags" }
2021-11-27 03:31:48 +03:00
arrayvec = "0.7.2"
2021-11-19 21:48:51 +03:00
bumpalo = { version = "3.8.0", features = ["collections"] }
[dev-dependencies]
2020-10-16 21:50:42 +03:00
roc_load = { path = "../load" }
roc_builtins = { path = "../builtins" }
roc_problem = { path = "../problem" }
roc_parse = { path = "../parse" }
roc_solve = { path = "../solve" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../roc_target" }
2022-04-12 22:36:36 +03:00
roc_reporting = { path = "../../reporting" }
pretty_assertions = "1.0.0"
indoc = "1.0.3"
tempfile = "3.2.0"
bumpalo = { version = "3.8.0", features = ["collections"] }
regex = "1.5.5"
lazy_static = "1.4.0"