reverie/reverie-examples/Cargo.toml
Jason White 68cb6d5f3a Remove unused pedigree example
Summary: Removing this to remove another dependency on `reverie-util`, so we can eventually get rid of it.

Reviewed By: rrnewton

Differential Revision: D41629842

fbshipit-source-id: bf6d518db6e5ff9f4149936a7dabc0e912133886
2022-12-05 10:20:52 -08:00

56 lines
1.1 KiB
TOML

# @generated by autocargo
[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.65"
clap = { version = "3.2.17", 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.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
tokio = { version = "1.21.2", features = ["full", "test-util", "tracing"] }
tracing = "0.1.35"