mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-02-09 21:56:13 +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
56 lines
1.3 KiB
TOML
56 lines
1.3 KiB
TOML
# @generated by autocargo from //hermetic_infra/reverie/reverie-examples:[chaos,chrome-trace,chunky_print,counter1,counter2,debug,noop,strace,strace_minimal]
|
|
|
|
[package]
|
|
name = "reverie-examples"
|
|
version = "0.1.0"
|
|
authors = ["Meta Platforms"]
|
|
edition = "2021"
|
|
license = "BSD-2-Clause"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "chaos"
|
|
path = "chaos.rs"
|
|
|
|
[[bin]]
|
|
name = "chrome_trace"
|
|
path = "chrome-trace/main.rs"
|
|
|
|
[[bin]]
|
|
name = "chunky_print"
|
|
path = "chunky_print.rs"
|
|
|
|
[[bin]]
|
|
name = "counter1"
|
|
path = "counter1.rs"
|
|
|
|
[[bin]]
|
|
name = "counter2"
|
|
path = "counter2.rs"
|
|
|
|
[[bin]]
|
|
name = "debug"
|
|
path = "debug.rs"
|
|
|
|
[[bin]]
|
|
name = "noop"
|
|
path = "noop.rs"
|
|
|
|
[[bin]]
|
|
name = "strace"
|
|
path = "strace/main.rs"
|
|
|
|
[[bin]]
|
|
name = "strace_minimal"
|
|
path = "strace_minimal.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
|
|
reverie = { version = "0.1.0", path = "../reverie" }
|
|
reverie-ptrace = { version = "0.1.0", path = "../reverie-ptrace" }
|
|
reverie-util = { version = "0.1.0", path = "../reverie-util" }
|
|
serde = { version = "1.0.185", features = ["derive", "rc"] }
|
|
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
|
|
tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] }
|
|
tracing = "0.1.40"
|