2021-12-02 05:42:56 +00:00
|
|
|
[package]
|
2022-03-13 18:30:27 +00:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2021-12-02 05:42:56 +00:00
|
|
|
description = "A version incrementer plugin for Nushell"
|
2022-08-14 12:21:20 +00:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_example"
|
2022-01-20 13:13:45 +00:00
|
|
|
edition = "2021"
|
2021-12-02 05:42:56 +00:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu_plugin_example"
|
2023-09-20 06:38:42 +00:00
|
|
|
version = "0.85.1"
|
2021-12-02 05:42:56 +00:00
|
|
|
|
2023-02-12 22:22:00 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_example"
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-12-02 05:42:56 +00:00
|
|
|
[dependencies]
|
2023-09-20 06:38:42 +00:00
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.85.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.85.1", features = ["plugin"] }
|