nushell/Cargo.toml

31 lines
1,003 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
2021-08-25 19:29:36 +00:00
[workspace]
2021-09-02 01:29:43 +00:00
members = ["crates/nu-cli", "crates/nu-engine", "crates/nu-parser", "crates/nu-command", "crates/nu-protocol"]
2021-08-25 19:29:36 +00:00
2021-06-30 01:42:56 +00:00
[dependencies]
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
crossterm = "0.21.*"
dialoguer = { version = "0.9.0", features = ["fuzzy-select"] }
2021-08-10 18:51:08 +00:00
nu-cli = { path="./crates/nu-cli" }
2021-09-02 22:58:15 +00:00
nu-command = { path="./crates/nu-command" }
2021-08-10 18:51:08 +00:00
nu-engine = { path="./crates/nu-engine" }
2021-10-01 05:11:49 +00:00
nu-json = { path="./crates/nu-json" }
2021-08-10 18:51:08 +00:00
nu-parser = { path="./crates/nu-parser" }
2021-10-01 05:11:49 +00:00
nu-path = { path="./crates/nu-path" }
2021-09-02 08:25:22 +00:00
nu-protocol = { path = "./crates/nu-protocol" }
2021-09-10 02:27:12 +00:00
nu-table = { path = "./crates/nu-table" }
nu-term-grid = { path = "./crates/nu-term-grid" }
2021-09-22 23:49:39 +00:00
miette = "3.0.0"
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"