mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-13 09:49:11 +03:00
25 lines
779 B
TOML
25 lines
779 B
TOML
[package]
|
|
name = "roc_load"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
roc_load_internal = { path = "../load_internal" }
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
roc_target = { path = "../roc_target" }
|
|
roc_constrain= { path = "../constrain" }
|
|
roc_types = { path = "../types" }
|
|
roc_module = { path = "../module" }
|
|
roc_collections = { path = "../collections" }
|
|
roc_reporting = { path = "../../reporting" }
|
|
|
|
[build-dependencies]
|
|
roc_load_internal = { path = "../load_internal" }
|
|
roc_builtins = { path = "../builtins" }
|
|
roc_module = { path = "../module" }
|
|
roc_reporting = { path = "../../reporting" }
|
|
roc_target = { path = "../roc_target" }
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|