roc/crates/repl_cli/Cargo.toml

47 lines
1.2 KiB
TOML

[package]
name = "roc_repl_cli"
description = "Command Line Interface(CLI) functionality for the Read-Evaluate-Print-Loop (REPL)."
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true
[features]
# pipe target to roc_build
target-aarch64 = ["roc_build/target-aarch64"]
target-arm = ["roc_build/target-arm"]
target-x86 = ["roc_build/target-x86"]
target-x86_64 = ["roc_build/target-x86_64"]
[dependencies]
roc_build.workspace = true
roc_builtins.workspace = true
roc_bitcode.workspace = true
roc_collections.workspace = true
roc_gen_llvm.workspace = true
roc_gen_dev.workspace = true
roc_load.workspace = true
roc_mono.workspace = true
roc_parse.workspace = true
roc_region.workspace = true
roc_repl_eval.workspace = true
roc_reporting.workspace = true
roc_std.workspace = true
roc_target.workspace = true
roc_types.workspace = true
roc_error_macros.workspace = true
roc_repl_ui.workspace = true
tempfile.workspace = true
bumpalo.workspace = true
const_format.workspace = true
inkwell.workspace = true
libloading.workspace = true
rustyline-derive.workspace = true
rustyline.workspace = true
target-lexicon.workspace = true
[lib]
name = "roc_repl_cli"
path = "src/lib.rs"