core/Cargo.toml: Update to ed25519-dalek v1.0.1 (#1808)

This commit is contained in:
Max Inden
2020-10-20 17:03:10 +02:00
committed by GitHub
parent e5adb67d73
commit 177567b177
4 changed files with 12 additions and 4 deletions

View File

@ -23,6 +23,10 @@
- [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md) - [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md)
- [`libp2p-core-derive` CHANGELOG](misc/core-derive/CHANGELOG.md) - [`libp2p-core-derive` CHANGELOG](misc/core-derive/CHANGELOG.md)
# Version 0.29.1 [unreleased]
- Update `libp2p-core`.
# Version 0.29.0 [2020-10-16] # Version 0.29.0 [2020-10-16]
- Update `libp2p-core`, `libp2p-floodsub`, `libp2p-gossipsub`, `libp2p-mplex`, - Update `libp2p-core`, `libp2p-floodsub`, `libp2p-gossipsub`, `libp2p-mplex`,

View File

@ -2,7 +2,7 @@
name = "libp2p" name = "libp2p"
edition = "2018" edition = "2018"
description = "Peer-to-peer networking library" description = "Peer-to-peer networking library"
version = "0.29.0" version = "0.29.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"
@ -62,7 +62,7 @@ atomic = "0.5.0"
bytes = "0.5" bytes = "0.5"
futures = "0.3.1" futures = "0.3.1"
lazy_static = "1.2" lazy_static = "1.2"
libp2p-core = { version = "0.23.0", path = "core" } libp2p-core = { version = "0.23.1", path = "core" }
libp2p-core-derive = { version = "0.20.2", path = "misc/core-derive" } libp2p-core-derive = { version = "0.20.2", path = "misc/core-derive" }
libp2p-floodsub = { version = "0.23.0", path = "protocols/floodsub", optional = true } libp2p-floodsub = { version = "0.23.0", path = "protocols/floodsub", optional = true }
libp2p-gossipsub = { version = "0.23.0", path = "./protocols/gossipsub", optional = true } libp2p-gossipsub = { version = "0.23.0", path = "./protocols/gossipsub", optional = true }

View File

@ -1,3 +1,7 @@
# 0.23.1 [unreleased]
- Update dependencies.
# 0.23.0 [2020-10-16] # 0.23.0 [2020-10-16]
- Rework transport boxing and move timeout configuration - Rework transport boxing and move timeout configuration

View File

@ -2,7 +2,7 @@
name = "libp2p-core" name = "libp2p-core"
edition = "2018" edition = "2018"
description = "Core traits and structs of libp2p" description = "Core traits and structs of libp2p"
version = "0.23.0" version = "0.23.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"
@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
asn1_der = "0.6.1" asn1_der = "0.6.1"
bs58 = "0.3.0" bs58 = "0.3.0"
ed25519-dalek = "1.0.0-pre.4" ed25519-dalek = "1.0.1"
either = "1.5" either = "1.5"
fnv = "1.0" fnv = "1.0"
futures = { version = "0.3.1", features = ["executor", "thread-pool"] } futures = { version = "0.3.1", features = ["executor", "thread-pool"] }