diff options
Diffstat (limited to 'ripple/Cargo.lock')
-rw-r--r-- | ripple/Cargo.lock | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/ripple/Cargo.lock b/ripple/Cargo.lock index fdab2f2..994b4bc 100644 --- a/ripple/Cargo.lock +++ b/ripple/Cargo.lock @@ -312,12 +312,45 @@ dependencies = [ ] [[package]] +name = "minitrace" +version = "0.0.0" +dependencies = [ + "anyhow", + "nix 0.19.1", + "spawn-ptrace", +] + +[[package]] name = "multimap" version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" [[package]] +name = "nix" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83450fe6a6142ddd95fb064b746083fc4ef1705fe81f64a64e1d4b39f54a1055" +dependencies = [ + "bitflags", + "cc", + "cfg-if 0.1.10", + "libc", +] + +[[package]] +name = "nix" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2" +dependencies = [ + "bitflags", + "cc", + "cfg-if 1.0.0", + "libc", +] + +[[package]] name = "num_cpus" version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -553,6 +586,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" [[package]] +name = "spawn-ptrace" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b572503c81aa40e1e61954bca89b863c344e0f310fd51f308d933255bf4f756" +dependencies = [ + "nix 0.18.0", +] + +[[package]] name = "subtle" version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" |