2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-14 21:18:49 +00:00
nushell/Cargo.toml

26 lines
764 B
TOML
Raw Normal View History

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