mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-01-23 13:10:04 +00:00
d8c87ad6ce
Summary: This is a pretty in depth third party library being added. The main changes are... **version bumping**: dunce = "1.0.0" => "1.0.2" once_cell = "1.8" => "1.12" tracing = "0.1.32" => "0.1.35" adding ethers-rs fork: https://github.com/rlkelly/ethers-rs.git this depends on forks of: coins-bip32 = https://github.com/rlkelly/bitcoins-rs.git coins-bip39 = https://github.com/rlkelly/bitcoins-rs.git eth-keystore = https://github.com/rlkelly/eth-keystore-rs.git this was necessary to remove the wasm target, which creates a cyclic dependency for "indexmap". This was ran into previously here: https://fb.workplace.com/groups/rust.language/permalink/8603206789727860/ also, some fixups were created for a few packages to facilitate build. I'm not a fan of libraries creating a build step to generate documentation... ---- This still does not have the ethers-middleware crate or the ethers-solc crate because it has the external build dependency of solc, which would make this a bit more complex to add: https://docs.soliditylang.org/en/latest/installing-solidity.html adding the crates without solc makes the process of integrating this library much easier, but it would be beneficial in the future. @public update rust deps Reviewed By: jsgf Differential Revision: D37320246 fbshipit-source-id: 251bd1c3c0e51733347a534fa597dea33d1df74b
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
# @generated by autocargo
|
|
|
|
[package]
|
|
name = "reverie-ptrace"
|
|
version = "0.1.0"
|
|
authors = ["Meta Platforms"]
|
|
edition = "2021"
|
|
license = "BSD-2-Clause"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.56"
|
|
async-trait = "0.1.56"
|
|
bincode = "1.3.3"
|
|
bitflags = "1.3"
|
|
bytes = { version = "1.1", features = ["serde"] }
|
|
futures = { version = "0.3.13", features = ["async-await", "compat"] }
|
|
goblin = "0.5.2"
|
|
lazy_static = "1.0"
|
|
libc = "0.2.121"
|
|
nix = "0.23"
|
|
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 = "10.0"
|
|
reverie = { version = "0.1.0", path = "../reverie" }
|
|
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
|
thiserror = "1.0.30"
|
|
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.35"
|
|
tracing-subscriber = { version = "0.3.11", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] }
|
|
unwind = { version = "0.4", features = ["ptrace"] }
|
|
|
|
[dev-dependencies]
|
|
quickcheck = "1.0"
|
|
quickcheck_macros = "1.0"
|