nushell/Cargo.toml

26 lines
764 B
TOML
Raw Normal View History

2021-06-30 03:42:56 +02: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
2021-08-25 21:29:36 +02:00
[workspace]
2021-09-02 03:29:43 +02:00
members = ["crates/nu-cli", "crates/nu-engine", "crates/nu-parser", "crates/nu-command", "crates/nu-protocol"]
2021-08-25 21:29:36 +02:00
2021-06-30 03:42:56 +02:00
[dependencies]
2021-08-09 08:02:51 +02:00
reedline = { git = "https://github.com/jntrnr/reedline", branch = "main" }
codespan-reporting = "0.11.1"
2021-08-10 20:51:08 +02:00
nu-cli = { path="./crates/nu-cli" }
2021-09-03 00:58:15 +02:00
nu-command = { path="./crates/nu-command" }
2021-08-10 20:51:08 +02:00
nu-engine = { path="./crates/nu-engine" }
nu-parser = { path="./crates/nu-parser" }
2021-09-02 10:25:22 +02:00
nu-protocol = { path = "./crates/nu-protocol" }
2021-08-10 20:51:08 +02:00
2021-07-30 22:02:16 +02:00
# mimalloc = { version = "*", default-features = false }
[dev-dependencies]
tempfile = "3.2.0"
assert_cmd = "1.0.7"
2021-08-09 08:02:51 +02:00
pretty_assertions = "0.7.2"