mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-04-25 19:02:13 +00:00
Publish v0.9.2 with zeroize (#1186)
* zeroize: Upgrade to v0.9 (#1179) * Publish v0.9.2
This commit is contained in:
parent
9d0dfa56c0
commit
d12d96b166
@ -1,3 +1,7 @@
|
|||||||
|
# Version 0.9.2 (2019-06-25)
|
||||||
|
|
||||||
|
- Updated `zeroize` to v0.9.
|
||||||
|
|
||||||
# Version 0.9.1 (2019-06-05)
|
# Version 0.9.1 (2019-06-05)
|
||||||
|
|
||||||
- `EitherOutput` now implements `Stream` and `Sink` if their variants also implement these traits.
|
- `EitherOutput` now implements `Stream` and `Sink` if their variants also implement these traits.
|
||||||
|
@ -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.9.1"
|
version = "0.9.2"
|
||||||
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"
|
||||||
|
@ -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.9.1"
|
version = "0.9.2"
|
||||||
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"
|
||||||
@ -35,7 +35,7 @@ tokio-io = "0.1"
|
|||||||
wasm-timer = "0.1"
|
wasm-timer = "0.1"
|
||||||
unsigned-varint = "0.2"
|
unsigned-varint = "0.2"
|
||||||
void = "1"
|
void = "1"
|
||||||
zeroize = "0.5"
|
zeroize = "0.9"
|
||||||
|
|
||||||
[target.'cfg(not(any(target_os = "emscripten", target_os = "unknown")))'.dependencies]
|
[target.'cfg(not(any(target_os = "emscripten", target_os = "unknown")))'.dependencies]
|
||||||
ring = { version = "0.14", features = ["use_heap"], default-features = false }
|
ring = { version = "0.14", features = ["use_heap"], default-features = false }
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libp2p-noise"
|
name = "libp2p-noise"
|
||||||
description = "Cryptographic handshake protocol using the noise framework."
|
description = "Cryptographic handshake protocol using the noise framework."
|
||||||
version = "0.7.0"
|
version = "0.7.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"
|
||||||
@ -20,7 +20,7 @@ ring = { version = "0.14", features = ["use_heap"], default-features = false }
|
|||||||
snow = { version = "0.5.2", features = ["ring-resolver"], default-features = false }
|
snow = { version = "0.5.2", features = ["ring-resolver"], default-features = false }
|
||||||
tokio-io = "0.1"
|
tokio-io = "0.1"
|
||||||
x25519-dalek = "0.5"
|
x25519-dalek = "0.5"
|
||||||
zeroize = "0.8"
|
zeroize = "0.9"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.6"
|
env_logger = "0.6"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user