roc/crates/repl_cli/Cargo.toml

44 lines
1.4 KiB
TOML
Raw Normal View History

[package]
edition = "2021"
name = "roc_repl_cli"
version = "0.0.1"
authors = ["The Roc Contributors"]
license = "UPL-1.0"
[features]
# pipe target to roc_build
target-aarch64 = ["roc_build/target-aarch64"]
target-arm = ["roc_build/target-arm"]
target-wasm32 = ["roc_build/target-wasm32"]
target-x86 = ["roc_build/target-x86"]
target-x86_64 = ["roc_build/target-x86_64"]
[dependencies]
bumpalo = {version = "3.8.0", features = ["collections"]}
2022-05-11 05:26:41 +03:00
const_format = { version = "0.2.23", features = ["const_generics"] }
inkwell = {path = "../vendor/inkwell"}
2022-02-25 22:41:05 +03:00
libloading = "0.7.1"
rustyline = {git = "https://github.com/roc-lang/rustyline", rev = "e74333c"}
rustyline-derive = {git = "https://github.com/roc-lang/rustyline", rev = "e74333c"}
target-lexicon = "0.12.2"
roc_build = {path = "../compiler/build"}
roc_builtins = {path = "../compiler/builtins"}
roc_collections = {path = "../compiler/collections"}
roc_gen_llvm = {path = "../compiler/gen_llvm"}
roc_load = {path = "../compiler/load"}
roc_mono = {path = "../compiler/mono"}
roc_parse = {path = "../compiler/parse"}
roc_repl_eval = {path = "../repl_eval"}
roc_reporting = {path = "../reporting"}
2022-08-06 20:01:07 +03:00
roc_std = {path = "../roc_std"}
roc_target = {path = "../compiler/roc_target"}
roc_types = {path = "../compiler/types"}
2022-07-18 23:42:07 +03:00
roc_region = { path = "../compiler/region" }
roc_module = { path = "../compiler/module" }
[lib]
name = "roc_repl_cli"
path = "src/lib.rs"