mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-02-02 09:45:45 +00:00
d7d1e7eec6
Summary: My recent diff: D49742979 which upgraded `bitflags` to 2.4 seems to have broken the Open Source CI for a few crates under `hermetic_infra`. That is because among other changes, `bitflags` 2.x requires the `serde` Cargo feature to `#[derive(Serialize, Deserialize)]` on generated flag types. See [the release notes](https://github.com/bitflags/bitflags/releases/tag/2.0.0?fbclid=IwAR0BHMz6T_jmIkXaJmkdvc9LdDTW15G5SSU_A-cZvLxof0aGS0BA7Hqnme0) This change should fix it. Reviewed By: mitrandir77 Differential Revision: D52801745 fbshipit-source-id: 826c70e5a111ab1a1159cceab6fb40831f355287
31 lines
814 B
TOML
31 lines
814 B
TOML
# @generated by autocargo from //hermetic_infra/reverie:reverie-process
|
|
|
|
[package]
|
|
name = "reverie-process"
|
|
version = "0.1.0"
|
|
authors = ["Meta Platforms"]
|
|
edition = "2021"
|
|
repository = "https://github.com/facebookexperimental/reverie"
|
|
license = "BSD-2-Clause"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
bitflags = { version = "2.4", features = ["serde"] }
|
|
colored = "2.1.0"
|
|
futures = { version = "0.3.28", features = ["async-await", "compat"] }
|
|
libc = "0.2.139"
|
|
nix = "0.25"
|
|
serde = { version = "1.0.185", features = ["derive", "rc"] }
|
|
syscalls = { version = "0.6.7", features = ["serde"] }
|
|
thiserror = "1.0.49"
|
|
tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] }
|
|
|
|
[dev-dependencies]
|
|
const-cstr = "0.3.0"
|
|
num_cpus = "1.16"
|
|
raw-cpuid = "10.6.0"
|
|
tempfile = "3.8"
|
|
|
|
[features]
|
|
default = []
|
|
nightly = []
|