mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-01-23 13:10:04 +00:00
7bfb3c0fe6
Summary: This diff does the following: - Updates the tracing crates to the latest versions available. Changes include: - Experimental support for [Valuable](https://tokio.rs/blog/2021-05-valuable), which makes recording values much more like how serde does. Valuable also makes it easier to write a tracing-slog crate due to some implementation details of slog where buffering of values is necessary. - Combinators for combining filters in tracing-subscriber. - A `MakeWriter` implementation for `RollingFileAppender` in `tracing_appender`, which allows the `RollingFileAppender` without a background thread to being spun up. - Reduced the disabled span drop overhead by 50-70%—this might be most apparent in tests that don't set a subscriber. - Move the tokio-console off git dependencies and to published versions on crates.io. This diff also updates the following, non-exhaustive list of crates: - parking_lot - prost - thread_local - tonic - hyper - httparse - h2 allow-large-files Reviewed By: jsgf, fanzeyi Differential Revision: D34801437 fbshipit-source-id: 2409de9194c8e00647ac5e4c514325fd2e23d247
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
# @generated by autocargo
|
|
|
|
[package]
|
|
name = "reverie-ptrace"
|
|
version = "0.1.0"
|
|
authors = ["Facebook"]
|
|
edition = "2021"
|
|
license = "BSD-2-Clause"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.51"
|
|
async-trait = "0.1.52"
|
|
bincode = "1.3.3"
|
|
bitflags = "1.3"
|
|
bytes = { version = "1.1", features = ["serde"] }
|
|
futures = { version = "0.3.13", features = ["async-await", "compat"] }
|
|
goblin = "0.3"
|
|
lazy_static = "1.0"
|
|
libc = "0.2.98"
|
|
nix = "0.22"
|
|
num-traits = "0.2"
|
|
parking_lot = { version = "0.11.2", features = ["send_guard"] }
|
|
paste = "1.0"
|
|
perf-event-open-sys = "1.0"
|
|
procfs = "0.9"
|
|
raw-cpuid = "9.0"
|
|
reverie = { version = "0.1.0", path = "../reverie" }
|
|
serde = { version = "1.0.126", features = ["derive", "rc"] }
|
|
thiserror = "1.0.29"
|
|
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.32"
|
|
tracing-subscriber = { version = "0.3.9", features = ["ansi", "env-filter", "fmt", "json", "parking_lot", "registry"] }
|
|
unwind = { version = "0.4", features = ["ptrace"] }
|
|
|
|
[dev-dependencies]
|
|
quickcheck = "1.0"
|
|
quickcheck_macros = "1.0"
|
|
|
|
[features]
|
|
default = ["llvm_asm", "llvm_asm"]
|
|
llvm_asm = []
|