Skip to content

Commit 40320f8

Browse files
authored
Version bump to 13 and update dependencies (#85)
1 parent b033b92 commit 40320f8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "enr"
33
authors = ["Age Manning <[email protected]>"]
44
edition = "2021"
5-
version = "0.12.1"
5+
version = "0.13.0"
66
description = "Rust implementation of Ethereum Node Record (ENR) EIP778"
77
readme = "./README.md"
88
keywords = ["ethereum", "enr", "record", "EIP778", "node"]
@@ -12,24 +12,24 @@ license = "MIT"
1212
exclude = [".gitignore", ".github/*"]
1313

1414
[dependencies]
15-
alloy-rlp = "0.3.4"
16-
base64 = "0.21"
15+
alloy-rlp = "0.3.9"
16+
base64 = "0.22"
1717
bytes = "1"
18-
hex = "0.4.3"
19-
log = "0.4.21"
18+
hex = "0.4"
19+
log = "0.4"
2020
rand = "0.8"
21-
zeroize = "1.7.0"
21+
zeroize = "1.8"
2222
sha3 = "0.10"
2323
k256 = { version = "0.13", features = ["ecdsa"], optional = true }
2424
serde = { version = "1.0", features = ["derive"], optional = true }
25-
ed25519-dalek = { version = "2.1.1", optional = true, features = ["rand_core"] }
26-
secp256k1 = { version = "0.29", optional = true, default-features = false, features = [
25+
ed25519-dalek = { version = "2.1", optional = true, features = ["rand_core"] }
26+
secp256k1 = { version = "0.30", optional = true, default-features = false, features = [
2727
"global-context",
2828
] }
2929

3030
[dev-dependencies]
31-
alloy-rlp = { version = "0.3.4", features = ["derive"] }
32-
secp256k1 = { version = "0.29", features = ["rand-std"] }
31+
alloy-rlp = { version = "0.3", features = ["derive"] }
32+
secp256k1 = { version = "0.30", features = ["rand"] }
3333
serde_json = "1.0"
3434

3535
[features]

0 commit comments

Comments
 (0)