mirror of
https://github.com/nushell/nushell.git
synced 2024-12-22 15:13:01 +01:00
49679741f7
It's palindromic!
33 lines
776 B
TOML
33 lines
776 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Nushell's evaluation engine"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-engine"
|
|
version = "0.101.0"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
nu-protocol = { path = "../nu-protocol", version = "0.101.0", default-features = false }
|
|
nu-path = { path = "../nu-path", version = "0.101.0" }
|
|
nu-glob = { path = "../nu-glob", version = "0.101.0" }
|
|
nu-utils = { path = "../nu-utils", version = "0.101.0", default-features = false }
|
|
log = { workspace = true }
|
|
terminal_size = { workspace = true }
|
|
|
|
[features]
|
|
default = ["os"]
|
|
os = [
|
|
"nu-protocol/os",
|
|
"nu-utils/os",
|
|
]
|
|
plugin = [
|
|
"nu-protocol/plugin",
|
|
"os",
|
|
] |