mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-01-22 21:04:53 +00:00
ec3b8f6cc1
Summary: In particular this fixes `FlattenUnordered` having a nasty deadlock, but also some other bugs: ``` # 0.3.28 - 2023-03-30 * Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733) * Fix bug in `FlattenUnordered` (#2726, #2728) # 0.3.27 - 2023-03-11 * Add `TryFlattenUnordered` (#2577, #2590, #2606, #2607) * Add `AbortHandle::is_aborted` (#2710) * Add `AbortRegistration::handle` (#2712) * Make `BiLock` strict-provenance compatible (#2716) # 0.3.26 - 2023-01-30 * Add `Either::as_pin_mut` and `Either::as_pin_ref` (#2691) * Add `Shared::ptr_eq` and `Shared::ptr_hash` (#2691) * Implement `FusedStream` for `Buffered` (#2676) * Implement `FusedStream` for all streams in `ReadyChunks` (#2693) * Fix bug in `FuturesOrdered::push_front` (#2664) * Remove `Fut::Output: Clone` bounds from some `Shared` methods (#2662) * Remove `T: Debug` bounds from `Debug` implementations of `mpsc` and `oneshot` types (#2666, #2667) # 0.3.25 - 2022-10-20 * Fix soundness issue in `join!` and `try_join!` macros (#2649) * Implement `Clone` for `sink::Drain` (#2650) # 0.3.24 - 2022-08-29 * Fix incorrect termination of `select_with_strategy` streams (#2635) # 0.3.23 - 2022-08-14 * Work around MSRV increase due to a cargo bug. ``` Reviewed By: zertosh Differential Revision: D44623815 fbshipit-source-id: 343ddb9277e1703104e516d07fe0610b5020930a
30 lines
667 B
TOML
30 lines
667 B
TOML
# @generated by autocargo
|
|
|
|
[package]
|
|
name = "reverie-process"
|
|
version = "0.1.0"
|
|
authors = ["Meta Platforms"]
|
|
edition = "2021"
|
|
license = "BSD-2-Clause"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
bitflags = "1.3"
|
|
colored = "1.9"
|
|
futures = { version = "0.3.28", features = ["async-await", "compat"] }
|
|
libc = "0.2.139"
|
|
nix = "0.25"
|
|
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
|
syscalls = { version = "0.6.7", features = ["serde"] }
|
|
thiserror = "1.0.36"
|
|
tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] }
|
|
|
|
[dev-dependencies]
|
|
const-cstr = "0.3.0"
|
|
num_cpus = "1.11"
|
|
raw-cpuid = "10.6.0"
|
|
tempfile = "3.5"
|
|
|
|
[features]
|
|
default = []
|
|
nightly = []
|