Skip to content

Commit 7150018

Browse files
authored
upgrade deps
1 parent 1dbae8c commit 7150018

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

wingfoil/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ lazy_static = {workspace=true}
2727

2828

2929
# local
30-
priority-queue = "1.4.0"
31-
itertools = "0.10.5"
30+
priority-queue = "2.7.0"
31+
itertools = "0.14.0"
3232
num = "0.4.3"
3333
serde = { version = "1.0", features = ["derive"] }
3434
serde_json = "1.0"
@@ -37,14 +37,14 @@ lobster = "0.7.0"
3737
csv = "1.4"
3838
num-traits = "0.2"
3939
derive-new = "0.7"
40-
serde-aux = "3.1.0"
40+
serde-aux = "4.7.0"
4141
futures = "0.3"
4242
tokio = { version = "1", features = ["full"] }
4343
tungstenite = { version="0.14.0", features = ["rustls-tls"]}
4444
smallvec = "1.15.1"
45-
rand = "0.8.5"
45+
rand = "0.9.2"
4646

47-
tynm = "0.1.10"
47+
tynm = "0.2.0"
4848
kanal = "0.1.1"
4949
scopeguard = "1.2.0"
5050
strum = {version = "0.27.2", features = ["derive"]}
@@ -57,7 +57,7 @@ futures-util = "0.3.31"
5757
anyhow = "1.0.100"
5858
tinyvec = { version = "1.10.0", features = ["alloc"] }
5959
arrayvec = { version = "0.7", features = ["serde"] }
60-
criterion = {version = "0.7.0", features = ["async_tokio"]}
60+
criterion = {version = "0.8.1", features = ["async_tokio"]}
6161
quanta = "0.9.3"
6262

6363

wingfoil/src/graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ mod tests {
706706
let captured = inputs
707707
.iter()
708708
.map(|stream| stream.clone().as_stream().distinct())
709-
.tree_fold1(
709+
.tree_reduce(
710710
// https://docs.rs/itertools/0.8.0/itertools/trait.Itertools.html#method.tree_fold1
711711
// 1 2 3 4 5 6 7
712712
// │ │ │ │ │ │ │

0 commit comments

Comments
 (0)