nushell/crates/nu-plugin-test-support/Cargo.toml
Jack Wright 1c5bd21ebc
Added let command to PluginTest (#12431)
# Description
The `let` command is needed for many example tests. This pull request
adds the `let` command to the EngineState of Test Plugin.

cc: @devyn 

# User-Facing Changes
No user changes. Plugin tests can now have examples with the let
keyword.

Co-authored-by: Jack Wright <jack.wright@disqo.com>
2024-04-06 20:11:41 +00:00

22 lines
819 B
TOML

[package]
name = "nu-plugin-test-support"
version = "0.92.2"
edition = "2021"
license = "MIT"
description = "Testing support for Nushell plugins"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin-test-support"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-engine = { path = "../nu-engine", version = "0.92.2", features = ["plugin"] }
nu-protocol = { path = "../nu-protocol", version = "0.92.2", features = ["plugin"] }
nu-parser = { path = "../nu-parser", version = "0.92.2", features = ["plugin"] }
nu-plugin = { path = "../nu-plugin", version = "0.92.2" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.92.2" }
nu-ansi-term = { workspace = true }
similar = "2.4"
[dev-dependencies]
typetag = "0.2"
serde = "1.0"