mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
28 lines
866 B
TOML
28 lines
866 B
TOML
[package]
|
|
name = "cli_utils"
|
|
version = "0.0.1"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
repository = "https://github.com/roc-lang/roc"
|
|
edition = "2021"
|
|
description = "Provides shared code for cli tests and benchmarks."
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../compiler/collections" }
|
|
roc_reporting = { path = "../reporting" }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_utils = { path = "../utils" }
|
|
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
criterion = { git = "https://github.com/Anton-4/criterion.rs"}
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
|
serde-xml-rs = "0.5.1"
|
|
strip-ansi-escapes = "0.1.1"
|
|
tempfile = "3.2.0"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
rlimit = "0.6.2"
|