Bump ed25519 from 2.2.2 to 2.2.3 (#105)

Bumps [ed25519](https://github.com/RustCrypto/signatures) from 2.2.2 to 2.2.3.
- [Commits](https://github.com/RustCrypto/signatures/compare/ed25519/v2.2.2...ed25519/v2.2.3)

---
updated-dependencies:
- dependency-name: ed25519
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-11-27 15:56:57 -03:00 committed by GitHub
parent 06b3a96521
commit c3880a52dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -394,9 +394,9 @@ dependencies = [
[[package]]
name = "ed25519"
version = "2.2.2"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60f6d271ca33075c88028be6f04d502853d63a5ece419d269c15315d4fc1cf1d"
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
dependencies = [
"pkcs8",
"serde",

View File

@ -20,7 +20,7 @@ features = ["nightly"]
# so only allow patch changes inside known compatible range
curve25519-dalek = { version = ">= 4.0, < 4.2", default-features = false, features = ["alloc", "digest", "zeroize", "precomputed-tables"] }
der = { version = "0.7.1", optional = true }
ed25519 = { version = "2.2.0", default-features = false }
ed25519 = { version = "2.2.3", default-features = false }
hashbrown = "0.14.0"
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
pkcs8 = { version = "0.10.1", optional = true, features = ["alloc", "pem"] }