2021-12-02 06:42:56 +01:00
|
|
|
[package]
|
2022-03-13 19:30:27 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2021-12-02 06:42:56 +01:00
|
|
|
description = "A version incrementer plugin for Nushell"
|
2022-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_example"
|
2022-01-20 14:13:45 +01:00
|
|
|
edition = "2021"
|
2021-12-02 06:42:56 +01:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu_plugin_example"
|
2024-06-26 03:26:07 +02:00
|
|
|
version = "0.95.1"
|
2021-12-02 06:42:56 +01:00
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "nu_plugin_example"
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-12-02 06:42:56 +01:00
|
|
|
[dependencies]
|
2024-06-26 03:26:07 +02:00
|
|
|
nu-plugin = { path = "../nu-plugin", version = "0.95.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.95.1", features = ["plugin"] }
|
2024-03-26 03:20:35 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-06-26 03:26:07 +02:00
|
|
|
nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.95.1" }
|
|
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.95.1" }
|