mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-11 00:51:21 +00:00
Fix version of noise (#966)
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
# Version 0.4.1 (2019-02-20)
|
||||
|
||||
- Fixed wrong version of libp2p-noise.
|
||||
|
||||
# Version 0.4.0 (2019-02-20)
|
||||
|
||||
- The `multiaddr!` macro has been moved to the `multiaddr` crate and is now reexported under the name `build_multiaddr!`.
|
||||
|
@ -2,7 +2,7 @@
|
||||
name = "libp2p"
|
||||
edition = "2018"
|
||||
description = "Peer-to-peer networking library"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/libp2p/rust-libp2p"
|
||||
@ -41,7 +41,7 @@ tokio-io = "0.1"
|
||||
[target.'cfg(not(any(target_os = "emscripten", target_os = "unknown")))'.dependencies]
|
||||
libp2p-dns = { version = "0.4.0", path = "./transports/dns" }
|
||||
libp2p-mdns = { version = "0.4.0", path = "./misc/mdns" }
|
||||
libp2p-noise = { version = "0.1.0", path = "./protocols/noise" }
|
||||
libp2p-noise = { version = "0.2.0", path = "./protocols/noise" }
|
||||
libp2p-tcp = { version = "0.4.0", path = "./transports/tcp" }
|
||||
|
||||
[target.'cfg(any(target_os = "emscripten", target_os = "unknown"))'.dependencies]
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "libp2p-noise"
|
||||
description = "Cryptographic handshake protocol using the noise framework."
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/libp2p/rust-libp2p"
|
||||
|
Reference in New Issue
Block a user