roc/compiler/mono/Cargo.toml

26 lines
836 B
TOML
Raw Normal View History

2020-03-07 02:15:06 +03:00
[package]
name = "roc_mono"
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"
2020-03-07 02:15:06 +03:00
[dependencies]
roc_collections = { path = "../collections" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
roc_types = { path = "../types" }
roc_can = { path = "../can" }
roc_unify = { path = "../unify" }
2020-10-11 02:54:50 +03:00
roc_solve = { path = "../solve" }
2021-08-26 21:18:26 +03:00
roc_std = { path = "../../roc_std" }
roc_problem = { path = "../problem" }
2021-11-21 01:25:30 +03:00
roc_builtins = { path = "../builtins" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../roc_target" }
2020-07-28 02:13:49 +03:00
ven_pretty = { path = "../../vendor/pretty" }
2021-05-07 18:26:49 +03:00
morphic_lib = { path = "../../vendor/morphic_lib" }
bumpalo = { version = "3.8.0", features = ["collections"] }
2021-04-18 16:35:43 +03:00
hashbrown = { version = "0.11.2", features = [ "bumpalo" ] }
2021-07-25 21:17:11 +03:00
ven_graph = { path = "../../vendor/pathfinding" }
2021-11-13 17:42:47 +03:00
static_assertions = "1.1.0"