2021-01-10 03:50:49 +01:00
|
|
|
[package]
|
2022-03-22 21:25:38 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
|
|
|
description = "A set of query commands for Nushell"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2021-01-10 03:50:49 +01:00
|
|
|
name = "nu-engine"
|
2022-03-27 05:18:47 +02:00
|
|
|
version = "0.60.1"
|
2021-08-10 20:51:08 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-27 05:18:47 +02:00
|
|
|
nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.60.1" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.60.1" }
|
|
|
|
nu-glob = { path = "../nu-glob", version = "0.60.1" }
|
2022-03-13 19:30:27 +01:00
|
|
|
|
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"] }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = []
|