mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-07-31 08:51:57 +00:00
* Bump to 0.7.0 * Update CHANGELOG.md Co-Authored-By: tomaka <pierre.krieger1708@gmail.com> * Update for #1078 * New version of multihash and multiaddr as well
28 lines
682 B
TOML
28 lines
682 B
TOML
[package]
|
|
name = "parity-multiaddr"
|
|
edition = "2018"
|
|
authors = ["dignifiedquire <dignifiedquire@gmail.com>", "Parity Technologies <admin@parity.io>"]
|
|
description = "Implementation of the multiaddr format"
|
|
homepage = "https://github.com/libp2p/rust-libp2p"
|
|
keywords = ["multiaddr", "ipfs"]
|
|
license = "MIT"
|
|
version = "0.4.0"
|
|
|
|
[dependencies]
|
|
arrayref = "0.3"
|
|
bs58 = "0.2.0"
|
|
byteorder = "1.3.1"
|
|
bytes = "0.4.12"
|
|
data-encoding = "2.1"
|
|
multihash = { package = "parity-multihash", version = "0.1.0", path = "../multihash" }
|
|
serde = "1.0.70"
|
|
unsigned-varint = "0.2"
|
|
|
|
[dev-dependencies]
|
|
bincode = "1"
|
|
bs58 = "0.2.0"
|
|
data-encoding = "2"
|
|
quickcheck = "0.8.1"
|
|
rand = "0.6.5"
|
|
serde_json = "1.0"
|