Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/github_actions/actions/cache-4
Browse files Browse the repository at this point in the history
  • Loading branch information
jxs authored Oct 11, 2024
2 parents aa5a435 + 469b0de commit 842a3c3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.18.2

- Implement missing protocols. See [PR 110].
[PR 110]: https://github.com/multiformats/rust-multiaddr/pull/110.

- Re-export `libp2p_identity::PeerId`. See [PR 108].
[PR 108]: https://github.com/multiformats/rust-multiaddr/pull/108.

- Avoid allocations in Display and Debug of Multiaddr. See [PR 106].
[PR 106]: https://github.com/multiformats/rust-multiaddr/pull/106

# 0.18.1

- Add `with_p2p` on `Multiaddr`. See [PR 102].
Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@ keywords = ["multiaddr", "ipfs"]
license = "MIT"
name = "multiaddr"
readme = "README.md"
version = "0.18.1"
version = "0.18.2"

[features]
default = ["url"]

[dependencies]
arrayref = "0.3"
byteorder = "1.3.1"
data-encoding = "2.1"
byteorder = "1.5.0"
data-encoding = "2.6.0"
multibase = "0.9.1"
multihash = "0.19"
percent-encoding = "2.1.0"
serde = "1.0.70"
percent-encoding = "2.3.1"
serde = "1.0.209"
static_assertions = "1.1"
unsigned-varint = "0.8"
url = { version = "2.1.0", optional = true, default-features = false }
libp2p-identity = { version = "0.2.0", features = ["peerid"] }
url = { version = "2.5.0", optional = true, default-features = false }
libp2p-identity = { version = "0.2.9", features = ["peerid"] }

[dev-dependencies]
bincode = "1"
quickcheck = { version = "1.0.3", default-features = false }
rand = "0.8.4"
rand = "0.8.5"
serde_json = "1.0"

# Passing arguments to the docsrs builder in order to properly document cfg's.
Expand Down

0 comments on commit 842a3c3

Please sign in to comment.