2021-01-10 15:50:49 +13:00
|
|
|
[package]
|
2022-03-23 09:25:38 +13:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 11:17:06 -07:00
|
|
|
description = "Nushell's evaluation engine"
|
2022-03-23 09:25:38 +13:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2021-01-10 15:50:49 +13:00
|
|
|
name = "nu-engine"
|
2022-04-16 09:29:30 +12:00
|
|
|
version = "0.61.1"
|
2021-08-11 06:51:08 +12:00
|
|
|
|
|
|
|
[dependencies]
|
2022-04-16 09:29:30 +12:00
|
|
|
nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.61.1" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.61.1" }
|
|
|
|
nu-glob = { path = "../nu-glob", version = "0.61.1" }
|
2022-03-13 11:30:27 -07:00
|
|
|
|
2021-12-02 06:35:32 +00:00
|
|
|
chrono = { version="0.4.19", features=["serde"] }
|
2022-04-23 16:33:27 -05:00
|
|
|
sysinfo = "0.23.10"
|
2021-12-02 06:35:32 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
plugin = []
|