nushell/crates/nu_plugin_example/Cargo.toml
Stefan Holderbach c3428b891a
Bump version for 0.92.0 release (#12349)
- [x] `cargo hack` feature flag compatibility run
- [x] reedline released and pinned
- [x] `nu-plugin-test-support` added to release script
- [x] dependency tree checked
- [x] release notes
2024-04-02 20:50:26 +03:00

24 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.92.0"
[[bin]]
name = "nu_plugin_example"
bench = false
[lib]
bench = false
[dependencies]
nu-plugin = { path = "../nu-plugin", version = "0.92.0" }
nu-protocol = { path = "../nu-protocol", version = "0.92.0", features = ["plugin"] }
[dev-dependencies]
nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.92.0" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.92.0" }