mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
27 lines
883 B
TOML
27 lines
883 B
TOML
[package]
|
|
name = "roc_mono"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2018"
|
|
|
|
[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" }
|
|
roc_solve = { path = "../solve" }
|
|
roc_std = { path = "../../roc_std" }
|
|
roc_problem = { path = "../problem" }
|
|
roc_builtins = { path = "../builtins" }
|
|
roc_target = { path = "../roc_target" }
|
|
roc_error_macros = {path="../../error_macros"}
|
|
ven_pretty = { path = "../../vendor/pretty" }
|
|
morphic_lib = { path = "../../vendor/morphic_lib" }
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
hashbrown = { version = "0.11.2", features = [ "bumpalo" ] }
|
|
ven_graph = { path = "../../vendor/pathfinding" }
|
|
static_assertions = "1.1.0"
|