mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "roc_repl_cli"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[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"]}
|
|
const_format = "0.2.22"
|
|
inkwell = {path = "../vendor/inkwell"}
|
|
libloading = "0.7.1"
|
|
rustyline = {git = "https://github.com/rtfeldman/rustyline", rev = "e74333c"}
|
|
rustyline-derive = {git = "https://github.com/rtfeldman/rustyline", rev = "e74333c"}
|
|
target-lexicon = "0.12.2"
|
|
|
|
# TODO: make llvm optional
|
|
roc_build = {path = "../compiler/build", features = ["llvm"]}
|
|
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"}
|
|
roc_std = {path = "../roc_std", default-features = false}
|
|
roc_target = {path = "../compiler/roc_target"}
|
|
roc_types = {path = "../compiler/types"}
|
|
|
|
[lib]
|
|
name = "roc_repl_cli"
|
|
path = "src/lib.rs"
|