mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-02-10 14:14:01 +00:00
Summary: Release notes: https://blog.rust-lang.org/2023/10/05/Rust-1.73.0.html This release is coupled with an update of the `anyhow` and `thiserror` crates because the unstable standard library API for backtraces has changed. Fbcode changes: - `feature(default_free_fn)` deleted (D50300881) - `noop_method_call` lint becomes warn-by-default (D50486032, D50516201) - stronger `invalid_reference_casting` detection (D50488164) - `feature(unix_chown)` has been stabilized - `feature(provide_any)` and `std::provider` deleted - `clippy::unwrap_or_else_default` renamed to `clippy::unwrap_or_default` - type inference ambiguities (D51780425) - `nu-command` build error (D51779062) Reviewed By: AndreasBackx, shayne-fletcher Differential Revision: D50294321 fbshipit-source-id: 0fac87f6ba072ad029f9ce41ce94ed813e855b20
30 lines
842 B
TOML
30 lines
842 B
TOML
# @generated by autocargo from //hermetic_infra/reverie:safeptrace
|
|
|
|
[package]
|
|
name = "safeptrace"
|
|
version = "0.1.0"
|
|
authors = ["Meta Platforms"]
|
|
edition = "2021"
|
|
license = "BSD-2-Clause"
|
|
|
|
[dependencies]
|
|
bitflags = "1.3"
|
|
futures = { version = "0.3.28", features = ["async-await", "compat"] }
|
|
lazy_static = "1.4"
|
|
libc = "0.2.139"
|
|
nix = "0.25"
|
|
parking_lot = { version = "0.12.1", features = ["send_guard"] }
|
|
reverie-memory = { version = "0.1.0", path = "../reverie-memory", optional = true }
|
|
reverie-process = { version = "0.1.0", path = "../reverie-process" }
|
|
syscalls = { version = "0.6.7", features = ["serde"] }
|
|
thiserror = "1.0.49"
|
|
|
|
[dev-dependencies]
|
|
quickcheck = "1.0"
|
|
quickcheck_macros = "1.0"
|
|
tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] }
|
|
|
|
[features]
|
|
default = []
|
|
memory = ["reverie-memory"]
|
|
notifier = []
|