mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-01-23 13:10:04 +00:00
aadb1865e7
Summary: When I was trying to use `nix::unistd::gethostname` in D39783468, the version `0.23.0` will require users to pass in a `buf` as a parameter, however, in `0.25.0`, there is no need to pass in a `buf` as a parameter. Hence, I would love to update `nix` crate from `0.23` to `0.25` in order to not pass a redundant `buf` while calling `nix::unistd::gethostname`. I fixed conflicts reflected from the signals manually so this diff is more than a few lines of code in `Cargo.toml`. Here are the [changes](https://github.com/nix-rust/nix/compare/v0.23.0..v0.25.0) between `0.23` and `0.25`. See `CHANGELOG.md` for the most significant changes in this version. Reviewed By: bgw Differential Revision: D39919100 fbshipit-source-id: 7f62585ff72230bd2608aeb5a4780dc0128795f7
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
# @generated by autocargo
|
|
|
|
[package]
|
|
name = "reverie-ptrace"
|
|
version = "0.1.0"
|
|
authors = ["Meta Platforms"]
|
|
edition = "2021"
|
|
license = "BSD-2-Clause"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
async-trait = "0.1.56"
|
|
bincode = "1.3.3"
|
|
bytes = { version = "1.1", features = ["serde"] }
|
|
futures = { version = "0.3.22", features = ["async-await", "compat"] }
|
|
goblin = "0.5.2"
|
|
lazy_static = "1.4"
|
|
libc = "0.2.132"
|
|
nix = "0.25"
|
|
num-traits = "0.2"
|
|
paste = "1.0"
|
|
perf-event-open-sys = "1.0"
|
|
procfs = "0.9"
|
|
raw-cpuid = "10.6.0"
|
|
reverie = { version = "0.1.0", path = "../reverie" }
|
|
safeptrace = { version = "0.1.0", path = "../safeptrace" }
|
|
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
|
thiserror = "1.0.36"
|
|
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
|
|
tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
|
|
tracing = "0.1.35"
|
|
tracing-subscriber = { version = "0.3.14", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] }
|
|
unwind = { version = "0.4", features = ["ptrace"] }
|