roc/crates/glue/Cargo.toml

39 lines
1.4 KiB
TOML
Raw Normal View History

2022-03-26 20:07:11 +03:00
[package]
name = "roc_glue"
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-11-03 12:00:06 +03:00
description = "Generates code needed for platform hosts to communicate with Roc apps. This tool is not necessary for writing a platform in another language, however, it's a great convenience! Currently supports Rust platforms, and the plan is to support any language via a plugin model."
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" }
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-11-21 01:03:17 +03:00
roc_packaging = { path = "../packaging" }
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" }
bumpalo = { version = "3.11.0", features = ["collections"] }
2022-05-05 19:09:26 +03:00
target-lexicon = "0.12.3"
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]
pretty_assertions = "1.3.0"
tempfile = "3.2.0"
indoc = "1.0.7"
cli_utils = { path = "../cli_utils" }
roc_test_utils = { path = "../test_utils" }
dircpy = "0.3.13"