rfc6979 v0.4.0 (#662)

This commit is contained in:
Tony Arcieri
2023-02-28 13:35:23 -07:00
committed by GitHub
parent 3d0daf374b
commit 831dca9589
5 changed files with 12 additions and 4 deletions
Generated
+1 -1
View File
@@ -675,7 +675,7 @@ dependencies = [
[[package]]
name = "rfc6979"
version = "0.4.0-pre.0"
version = "0.4.0"
dependencies = [
"hex-literal",
"hmac",
+1 -1
View File
@@ -19,7 +19,7 @@ digest = "0.10"
num-bigint = { package = "num-bigint-dig", version = "0.8", default-features = false, features = ["prime", "rand", "zeroize"] }
num-traits = { version = "0.2", default-features = false }
pkcs8 = { version = "0.9", default-features = false, features = ["alloc"] }
rfc6979 = { version = "=0.4.0-pre.0", path = "../rfc6979" }
rfc6979 = { version = "0.4", path = "../rfc6979" }
sha2 = { version = "0.10", default-features = false }
signature = { version = "2.0, <2.1", default-features = false, features = ["alloc", "digest", "rand_core"] }
zeroize = { version = "1.5", default-features = false }
+1 -1
View File
@@ -21,7 +21,7 @@ signature = { version = "2.0, <2.1", default-features = false, features = ["rand
# optional dependencies
der = { version = "0.7", optional = true }
rfc6979 = { version = "=0.4.0-pre.0", optional = true, path = "../rfc6979" }
rfc6979 = { version = "0.4", optional = true, path = "../rfc6979" }
serdect = { version = "0.1", optional = true, default-features = false, features = ["alloc"] }
[dev-dependencies]
+8
View File
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.4.0 (2023-02-28)
### Changed
- MSRV 1.60 ([#628])
- Decouple from `crypto-bigint` ([#639])
[#628]: https://github.com/RustCrypto/signatures/pull/628
[#639]: https://github.com/RustCrypto/signatures/pull/639
## 0.3.1 (2022-11-03)
### Added
- Usage example ([#577])
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "rfc6979"
version = "0.4.0-pre.0"
version = "0.4.0"
description = """
Pure Rust implementation of RFC6979: Deterministic Usage of the
Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)