2022-03-26 20:07:11 +03:00
|
|
|
[package]
|
2022-07-24 17:25:27 +03:00
|
|
|
name = "roc_glue"
|
2022-08-03 12:41:19 +03:00
|
|
|
version = "0.0.1"
|
2022-03-26 20:07:11 +03:00
|
|
|
authors = ["The Roc Contributors"]
|
|
|
|
license = "UPL-1.0"
|
2022-05-16 18:04:17 +03:00
|
|
|
edition = "2021"
|
2022-05-05 16:44:07 +03:00
|
|
|
|
2022-03-26 20:07:11 +03:00
|
|
|
[dependencies]
|
2022-08-06 20:01:07 +03:00
|
|
|
roc_std = { path = "../roc_std"}
|
2022-05-03 20:34:31 +03:00
|
|
|
roc_can = { path = "../compiler/can" }
|
2022-08-31 20:03:30 +03:00
|
|
|
roc_intern = { path = "../compiler/intern" }
|
2022-05-03 20:34:31 +03:00
|
|
|
roc_mono = { path = "../compiler/mono" }
|
|
|
|
roc_load = { path = "../compiler/load" }
|
2022-05-05 19:09:26 +03:00
|
|
|
roc_reporting = { path = "../reporting" }
|
2022-05-03 20:34:31 +03:00
|
|
|
roc_types = { path = "../compiler/types" }
|
|
|
|
roc_builtins = { path = "../compiler/builtins" }
|
|
|
|
roc_module = { path = "../compiler/module" }
|
2022-05-03 21:16:05 +03:00
|
|
|
roc_collections = { path = "../compiler/collections" }
|
|
|
|
roc_target = { path = "../compiler/roc_target" }
|
|
|
|
roc_error_macros = { path = "../error_macros" }
|
2022-09-07 20:42:46 +03:00
|
|
|
roc_tracing = { path = "../tracing" }
|
2022-05-03 21:16:05 +03:00
|
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
2022-05-05 19:09:26 +03:00
|
|
|
target-lexicon = "0.12.3"
|
2022-09-12 13:33:19 +03:00
|
|
|
clap = { version = "3.2.20", default-features = false, features = ["std", "color", "suggestions", "derive"] }
|
2022-05-22 06:14:03 +03:00
|
|
|
strum = "0.24.0"
|
|
|
|
strum_macros = "0.24"
|
2022-05-24 05:58:16 +03:00
|
|
|
indexmap = "1.8.1"
|
2022-07-14 21:07:15 +03:00
|
|
|
fnv = "1.0.7"
|
2022-03-26 20:07:11 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-12 13:33:19 +03:00
|
|
|
pretty_assertions = "1.3.0"
|
2022-05-04 22:21:58 +03:00
|
|
|
tempfile = "3.2.0"
|
2022-08-15 16:18:18 +03:00
|
|
|
indoc = "1.0.7"
|
2022-05-14 18:02:23 +03:00
|
|
|
cli_utils = { path = "../cli_utils" }
|
|
|
|
roc_test_utils = { path = "../test_utils" }
|
2022-09-05 17:02:27 +03:00
|
|
|
dircpy = "0.3.13"
|