nushell/crates/nu-engine/Cargo.toml

15 lines
289 B
TOML
Raw Normal View History

2021-08-10 20:51:08 +02:00
[package]
name = "nu-engine"
version = "0.1.0"
edition = "2021"
2021-08-10 20:51:08 +02:00
[dependencies]
2021-12-02 07:35:32 +01:00
nu-protocol = { path = "../nu-protocol", features = ["plugin"] }
2021-10-09 03:02:01 +02:00
nu-path = { path = "../nu-path" }
2021-10-20 07:58:25 +02:00
itertools = "0.10.1"
2021-12-02 07:35:32 +01:00
chrono = { version="0.4.19", features=["serde"] }
glob = "0.3.0"
2021-12-02 07:35:32 +01:00
[features]
plugin = []