mirror of
https://github.com/nushell/nushell
synced 2024-11-15 01:17:07 +00:00
2ae4408ced
# Description Uses the new `nu-plugin-test-support` crate to test the examples of commands provided by plugins in the repo. Also fixed some of the examples to pass. # User-Facing Changes - Examples that are more guaranteed to work # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib`
23 lines
672 B
TOML
23 lines
672 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "A version incrementer plugin for Nushell"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_example"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu_plugin_example"
|
|
version = "0.91.1"
|
|
|
|
[[bin]]
|
|
name = "nu_plugin_example"
|
|
bench = false
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-plugin = { path = "../nu-plugin", version = "0.91.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.91.1", features = ["plugin"] }
|
|
|
|
[dev-dependencies]
|
|
nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.91.1" }
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.91.1" }
|