2021-01-10 02:50:49 +00:00
|
|
|
[package]
|
2022-03-22 20:25:38 +00:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2022-04-11 18:17:06 +00:00
|
|
|
description = "Nushell's evaluation engine"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine"
|
2022-03-22 20:25:38 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
2021-01-10 02:50:49 +00:00
|
|
|
name = "nu-engine"
|
2024-04-12 13:00:43 +00:00
|
|
|
version = "0.92.3"
|
2021-08-10 18:51:08 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-08-10 18:51:08 +00:00
|
|
|
[dependencies]
|
2024-04-12 13:00:43 +00:00
|
|
|
nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.92.3" }
|
|
|
|
nu-path = { path = "../nu-path", version = "0.92.3" }
|
|
|
|
nu-glob = { path = "../nu-glob", version = "0.92.3" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.92.3" }
|
2022-03-13 18:30:27 +00:00
|
|
|
|
2021-12-02 06:35:32 +00:00
|
|
|
[features]
|
|
|
|
plugin = []
|