mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
92 lines
2.6 KiB
TOML
92 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"]
|
|
|
|
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 = { path = "../compiler/gen" }
|
|
roc_build = { path = "../compiler/build" }
|
|
roc_fmt = { path = "../compiler/fmt" }
|
|
roc_reporting = { path = "../compiler/reporting" }
|
|
roc_editor = { path = "../editor" }
|
|
# 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" }
|
|
target-lexicon = "0.10"
|
|
tempfile = "3.1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
[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" }
|
|
# Keep the commented deps, they are commented because they require nightly rust
|
|
# criterion-perf-events = "0.1.3"
|
|
# perfcnt = "0.7.1"
|
|
|
|
[[bench]]
|
|
name = "time_bench"
|
|
harness = false
|
|
|
|
# Keep this benchmark, it's commented because it requires nightly
|
|
# [[bench]]
|
|
# name = "events_bench"
|
|
# harness = false
|