From f8e48aa0afb72d3bb77173a25bcd70642d0e5851 Mon Sep 17 00:00:00 2001 From: Fernando Herrera Date: Thu, 4 Nov 2021 22:22:20 +0000 Subject: [PATCH] renamed cargo file --- crates/nu_plugin_inc/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 crates/nu_plugin_inc/Cargo.toml diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml new file mode 100644 index 000000000..b3f470226 --- /dev/null +++ b/crates/nu_plugin_inc/Cargo.toml @@ -0,0 +1,17 @@ +[package] +authors = ["The Nu Project Contributors"] +description = "A version incrementer plugin for Nushell" +edition = "2018" +license = "MIT" +name = "nu_plugin_inc" +version = "0.1.0" + +[lib] +doctest = false + +[dependencies] +nu-plugin = { path="../nu-plugin", version = "0.1.0" } +nu-protocol = { path="../nu-protocol", version = "0.1.0" } +nu-engine = { path="../nu-engine", version = "0.1.0" } + +semver = "0.11.0"