Skip to content

Commit

Permalink
Enable alloc feature for base64 and release 1.0.1
Browse files Browse the repository at this point in the history
Fixes: #14
  • Loading branch information
robin-nitrokey committed May 6, 2024
1 parent 569321d commit 2fd225c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## [v1.0.1](https://github.com/Nitrokey/nethsm-sdk-rs/releases/tag/v1.0.1) (2024-05-06)

### Bugfixes

- Enable `alloc` feature for `base64` dependency ([#14](https://github.com/Nitrokey/nethsm-sdk-rs/issues/14))

[All Changes](https://github.com/Nitrokey/nethsm-sdk-rs/compare/v1.0.0...v1.0.1)

## [v1.0.0](https://github.com/Nitrokey/nethsm-sdk-rs/releases/tag/v1.0.0) (2023-11-27)

This is the first stable release of `nethsm-sdk-rs` and supports NetHSM [v1.0][nethsm-v1.0].

[nethsm-v1.0]: https://github.com/Nitrokey/nethsm/releases/tag/v1.0
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nethsm-sdk-rs"
version = "1.0.0"
version = "1.0.1"
authors = ["Nitrokey <[email protected]>"]
description = "Rust SDK to communicate with Nitrokey NetHSM"
documentation = "https://docs.nitrokey.com/nethsm/"
Expand All @@ -24,4 +24,4 @@ serde_derive = "^1.0"
serde_json = { default-features = false, version = "^1.0" }
url = "^2.2"
ureq = { version = "2", features = ["json", "tls"], default-features = false }
base64 = { version = "0.21", default-features = false }
base64 = { version = "0.21", default-features = false, features = ["alloc"] }
2 changes: 1 addition & 1 deletion generator/src/main/resources/crust/Cargo.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ serde_derive = "^1.0"
serde_json = { default-features = false, version = "^1.0" }
url = "^2.2"
ureq = { version = "2", features = ["json", "tls"], default-features = false }
base64 = { version = "0.21", default-features = false }
base64 = { version = "0.21", default-features = false, features = ["alloc"] }

0 comments on commit 2fd225c

Please sign in to comment.