-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (25 loc) · 963 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "nu_plugin_semver"
authors = ["Antoine Busch <antoine.busch@gmail.com>"]
version = "0.11.1"
edition = "2021"
description = "A nushell plugin for dealing with SemVer versions"
keywords = ["nu", "plugin", "semver", "versioning"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/abusch/nu_plugin_semver"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-plugin = "0.101.0"
nu-protocol = { version = "0.101.0", features = ["plugin"] }
semver = { version = "1.0.23", features = ["serde"] }
serde = "1"
strum = { version = "0.26", features = ["derive"] }
thiserror = "2"
typetag = "0.2"
[dev-dependencies]
nu-plugin-test-support = "0.101.0"
# [patch.crates-io]
# nu-plugin = { git = "https://github.com/nushell/nushell/" }
# nu-protocol = { git = "https://github.com/nushell/nushell/" }
# nu-plugin-test-support = { git = "https://github.com/nushell/nushell/" }