nushell/Cargo.toml

21 lines
548 B
TOML
Raw Normal View History

2021-06-30 01:42:56 +00:00
[package]
name = "engine-q"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-08-09 06:02:51 +00:00
reedline = { git = "https://github.com/jntrnr/reedline", branch = "main" }
codespan-reporting = "0.11.1"
2021-08-10 18:51:08 +00:00
nu-cli = { path="./crates/nu-cli" }
nu-engine = { path="./crates/nu-engine" }
nu-parser = { path="./crates/nu-parser" }
2021-07-30 20:02:16 +00:00
# mimalloc = { version = "*", default-features = false }
[dev-dependencies]
tempfile = "3.2.0"
assert_cmd = "1.0.7"
2021-08-09 06:02:51 +00:00
pretty_assertions = "0.7.2"