Skip to content

Commit a6563e4

Browse files
committed
chore: Upgrade dependencies
1 parent 2f864a1 commit a6563e4

1 file changed

Lines changed: 17 additions & 24 deletions

File tree

twenty-first/Cargo.toml

Lines changed: 17 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -15,36 +15,15 @@ readme.workspace = true
1515
keywords = ["polynomial", "merkle-tree", "post-quantum", "algebra", "tip5"]
1616
categories = ["cryptography", "mathematics"]
1717

18-
[dev-dependencies]
19-
bincode = "1.3.3"
20-
blake3 = "1.5.5"
21-
test-strategy = "=0.4.1" # v0.4.2 produces clippy warnings; use v0.4.3 once released
22-
trybuild = "1.0"
23-
24-
# dev deps for wasm32 target arch
25-
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
26-
criterion = { version = "0.6.0", default-features = false, features = ["html_reports"] }
27-
28-
# dev deps for everything except wasm32 target arch
29-
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
30-
criterion = { version = "0.6", features = ["html_reports"] }
31-
proptest = { version = "1.7.0", default-features = false, features = ["std"] }
32-
proptest-arbitrary-interop = "0.1"
33-
34-
[dev-dependencies.cargo-husky]
35-
version = "1"
36-
default-features = false
37-
features = ["user-hooks"]
38-
3918
[dependencies]
4019
arbitrary = { version = "1", features = ["derive"] }
4120
bfieldcodec_derive = "0.7"
42-
get-size2 = { version = "0.5", features = ["derive"] }
21+
get-size2 = { version = "0.7", features = ["derive"] }
4322
hex = "0.4.3"
4423
itertools = "0.14"
4524
num-bigint = { version = "0.4", features = ["serde"] }
4625
num-traits = "0.2"
47-
phf = { version = "0.12", features = ["macros"] }
26+
phf = { version = "0.13", features = ["macros"] }
4827
rand = "0.9"
4928
rayon = "1.10"
5029
serde = { version = "1.0", features = ["derive"] }
@@ -61,7 +40,21 @@ zeroize = { version = "1.8.1", features = ["derive"] }
6140
# convince getrandom to build for wasm target.
6241
# note that there is also a flag in .cargo/config.toml
6342
getrandom = { version = "0.3", features = ["wasm_js"] }
64-
wasm-bindgen = "=0.2.100"
43+
wasm-bindgen = "=0.2.104"
44+
45+
[dev-dependencies]
46+
bincode = "1.3.3"
47+
blake3 = "1.5.5"
48+
test-strategy = "=0.4.3"
49+
trybuild = "1.0"
50+
51+
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
52+
criterion = { version = "0.7", features = ["html_reports"] }
53+
proptest = { version = "1.7.0", default-features = false, features = ["std"] }
54+
proptest-arbitrary-interop = "0.1"
55+
56+
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
57+
criterion = { version = "0.7.0", default-features = false }
6558

6659
[lints]
6760
workspace = true

0 commit comments

Comments
 (0)