Skip to content

Commit b8dd793

Browse files
cfsmp3facebook-github-bot
authored andcommitted
Update futures 0.3.30 -> 0.3.31
Summary: X-link: meta-pytorch/monarch#645 X-link: facebook/fb303#70 0.3.31 - 2024-10-05 Fix use after free of task in FuturesUnordered when dropped future panics (#2886) Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix. Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884) Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted. Work around issue due to upstream Waker::will_wake change (#2865) Add stream::Iter::{get_ref,get_mut,into_inner} (#2875) Add future::AlwaysReady (#2825) Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848) Reviewed By: cjlongoria Differential Revision: D78949285 fbshipit-source-id: 1147c6b3783f9eb0e292a962b698a2c79b50c07a
1 parent 8bbaa7a commit b8dd793

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

reverie-process/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "BSD-2-Clause"
1212
bincode = "1.3.3"
1313
bitflags = { version = "2.9", features = ["serde"], default-features = false }
1414
colored = "2.1.0"
15-
futures = { version = "0.3.30", features = ["async-await", "compat"] }
15+
futures = { version = "0.3.31", features = ["async-await", "compat"] }
1616
libc = "0.2.139"
1717
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }
1818
serde = { version = "1.0.185", features = ["derive", "rc"] }

reverie-ptrace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async-trait = "0.1.86"
1414
bincode = "1.3.3"
1515
bytes = { version = "1.10", features = ["serde"] }
1616
close-err = "1.0.2"
17-
futures = { version = "0.3.30", features = ["async-await", "compat"] }
17+
futures = { version = "0.3.31", features = ["async-await", "compat"] }
1818
goblin = { version = "0.8.2", features = ["elf32", "elf64", "endian_fd"] }
1919
iced-x86 = "1.17.0"
2020
lazy_static = "1.5"

safeptrace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "BSD-2-Clause"
1010

1111
[dependencies]
1212
bitflags = { version = "2.9", features = ["serde", "std"], default-features = false }
13-
futures = { version = "0.3.30", features = ["async-await", "compat"] }
13+
futures = { version = "0.3.31", features = ["async-await", "compat"] }
1414
lazy_static = "1.5"
1515
libc = "0.2.139"
1616
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }

0 commit comments

Comments
 (0)