-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable alloc feature for base64 and release 1.0.1
Fixes: #14
- Loading branch information
1 parent
569321d
commit 2fd225c
Showing
3 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
|
@@ -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"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters