Skip to content

Commit

Permalink
chore: bump nushell deps to v0.95.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fnuttens committed Jun 26, 2024
1 parent ba10109 commit 23e52d2
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 34 deletions.
90 changes: 60 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
authors = ["Florent Nuttens"]
name = "nu_plugin_hmac"
version = "0.6.0"
version = "0.7.0"
edition = "2021"

[dependencies]
hex = "0.4.3"
hmac = "0.12.1"
nu-plugin = "0.94.0"
nu-protocol = "0.94.0"
nu-plugin = "0.95.0"
nu-protocol = "0.95.0"
sha2 = "0.10.8"
whirlpool = "0.10.4"

[dev-dependencies]
nu-plugin-test-support = "0.94.0"
nu-plugin-test-support = "0.95.0"
4 changes: 4 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ impl Plugin for HmacPlugin {
Box::new(Whirlpool),
]
}

fn version(&self) -> String {
env!("CARGO_PKG_VERSION").into()
}
}

fn main() {
Expand Down

0 comments on commit 23e52d2

Please sign in to comment.