summaryrefslogtreecommitdiff
path: root/crates/nu_plugin_example/Cargo.toml
blob: c16f6c25737404a892775f3539a7ff58558f6cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[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.97.2"

[[bin]]
name = "nu_plugin_example"
bench = false

[lib]
bench = false

[dependencies]
nu-plugin = { path = "../nu-plugin", version = "0.97.2" }
nu-protocol = { path = "../nu-protocol", version = "0.97.2", features = ["plugin"] }

[dev-dependencies]
nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.97.2" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.97.2" }