nushell/crates/nu-command/Cargo.toml

16 lines
401 B
TOML
Raw Normal View History

2021-09-02 03:29:43 +02:00
[package]
name = "nu-command"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-10 03:06:44 +02:00
nu-engine = { path = "../nu-engine" }
2021-10-01 07:11:49 +02:00
nu-json = { path = "../nu-json" }
nu-protocol = { path = "../nu-protocol" }
2021-09-10 04:27:12 +02:00
nu-table = { path = "../nu-table" }
2021-09-10 03:06:44 +02:00
# Potential dependencies for extras
2021-10-01 07:11:49 +02:00
glob = "0.3.0"
thiserror = "1.0.29"