mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
89 lines
2.6 KiB
TOML
89 lines
2.6 KiB
TOML
[package]
|
|
name = "roc_cli"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
repository = "https://github.com/rtfeldman/roc"
|
|
edition = "2018"
|
|
description = "A CLI for Roc"
|
|
default-run = "roc"
|
|
|
|
[[bin]]
|
|
name = "roc"
|
|
path = "src/main.rs"
|
|
test = false
|
|
bench = false
|
|
|
|
[features]
|
|
default = ["target-x86", "llvm", "editor"]
|
|
|
|
# This is a separate feature because when we generate docs on Netlify,
|
|
# it doesn't have LLVM installed. (Also, it doesn't need to do code gen.)
|
|
llvm = ["inkwell", "roc_gen_llvm", "roc_build/llvm"]
|
|
editor = ["roc_editor"]
|
|
|
|
target-x86 = []
|
|
|
|
# arm and wasm give linker errors on some platforms
|
|
target-arm = []
|
|
target-webassembly = []
|
|
|
|
target-all = [
|
|
"target-x86",
|
|
"target-arm",
|
|
"target-webassembly"
|
|
]
|
|
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../compiler/collections" }
|
|
roc_can = { path = "../compiler/can" }
|
|
roc_docs = { path = "../docs" }
|
|
roc_parse = { path = "../compiler/parse" }
|
|
roc_region = { path = "../compiler/region" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_problem = { path = "../compiler/problem" }
|
|
roc_types = { path = "../compiler/types" }
|
|
roc_builtins = { path = "../compiler/builtins" }
|
|
roc_constrain = { path = "../compiler/constrain" }
|
|
roc_unify = { path = "../compiler/unify" }
|
|
roc_solve = { path = "../compiler/solve" }
|
|
roc_mono = { path = "../compiler/mono" }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_gen_llvm = { path = "../compiler/gen_llvm", optional = true }
|
|
roc_build = { path = "../compiler/build", default-features = false }
|
|
roc_fmt = { path = "../compiler/fmt" }
|
|
roc_reporting = { path = "../compiler/reporting" }
|
|
roc_editor = { path = "../editor", optional = true }
|
|
# TODO switch to clap 3.0.0 once it's out. Tried adding clap = "~3.0.0-beta.1" and cargo wouldn't accept it
|
|
clap = { git = "https://github.com/rtfeldman/clap", branch = "master" }
|
|
const_format = "0.2.8"
|
|
rustyline = { git = "https://github.com/rtfeldman/rustyline", tag = "prompt-fix" }
|
|
rustyline-derive = { git = "https://github.com/rtfeldman/rustyline", tag = "prompt-fix" }
|
|
im = "14" # im and im-rc should always have the same version!
|
|
im-rc = "14" # im and im-rc should always have the same version!
|
|
bumpalo = { version = "3.2", features = ["collections"] }
|
|
inlinable_string = "0.1"
|
|
libc = "0.2"
|
|
libloading = "0.6"
|
|
|
|
inkwell = { path = "../vendor/inkwell", optional = true }
|
|
target-lexicon = "0.10"
|
|
tempfile = "3.1.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
maplit = "1.0.1"
|
|
indoc = "0.3.3"
|
|
quickcheck = "0.8"
|
|
quickcheck_macros = "0.8"
|
|
serial_test = "0.5"
|
|
tempfile = "3.1.0"
|
|
criterion = { git = "https://github.com/Anton-4/criterion.rs"}
|
|
cli_utils = { path = "cli_utils" }
|
|
|
|
[[bench]]
|
|
name = "time_bench"
|
|
harness = false
|
|
|