roc/crates/compiler/solve/Cargo.toml

45 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "roc_solve"
version = "0.0.1"
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
license = "UPL-1.0"
2022-05-16 18:04:17 +03:00
edition = "2021"
2022-11-03 12:00:06 +03:00
description = "The entry point of Roc's type inference system. Implements type inference and specialization of abilities."
[dependencies]
roc_collections = { path = "../collections" }
2022-04-12 22:36:36 +03:00
roc_error_macros = { path = "../../error_macros" }
roc_exhaustive = { path = "../exhaustive" }
2022-11-21 01:03:17 +03:00
roc_packaging = { path = "../../packaging" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
roc_types = { path = "../types" }
roc_can = { path = "../can" }
roc_derive_key = { path = "../derive_key" }
roc_derive = { path = "../derive" }
roc_problem = { path = "../problem" }
2022-07-26 00:13:03 +03:00
roc_solve_problem = { path = "../solve_problem" }
roc_unify = { path = "../unify" }
2022-05-05 19:06:09 +03:00
roc_debug_flags = { path = "../debug_flags" }
2022-11-13 17:16:52 +03:00
arrayvec.workspace = true
bumpalo.workspace = true
[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" }
roc_derive = { path = "../derive", features = ["debug-derived-symbols"] }
2022-11-13 17:16:52 +03:00
pretty_assertions.workspace = true
indoc.workspace = true
tempfile.workspace = true
bumpalo.workspace = true
regex.workspace = true
lazy_static.workspace = true
insta.workspace = true