reverie/reverie-examples/Cargo.toml
Adrian Enache 1bfb484c40
Some checks failed
ci / Check (push) Has been cancelled
ci / Test Suite (push) Has been cancelled
ci / Clippy (push) Has been cancelled
update serde 1.0.203->1.0.214, serde_json 1.0.125->1.0.132
Summary: - fix some cfg for serde_json which changed in the meantime

Reviewed By: dtolnay

Differential Revision: D65182502

fbshipit-source-id: 9234db3ca89334552a0e12ac7e90b59b0bdf2897
2024-10-31 16:04:02 -07:00

57 lines
1.4 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"
repository = "https://github.com/facebookexperimental/reverie"
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.86"
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.132", features = ["float_roundtrip", "unbounded_depth"] }
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }