summary refs log tree commit diff
path: root/ripple/Cargo.lock
diff options
context:
space:
mode:
authoredef <edef@unfathomable.blue>2021-12-27 11:57:33 +0000
committeredef <edef@unfathomable.blue>2021-12-27 11:59:37 +0000
commit54eaee06413c60434ffb77e65aee8b9d9a09d8ab (patch)
treef90ab01297c87e34b4ca1a7c70488f54f07e1c09 /ripple/Cargo.lock
parentb41a93355ebd37312266b5c1e599f5008414e396 (diff)
ripple/minitrace: init
Minimal PTRACE_SYSCALL tracer for further narrowing down the syscalls
we need to support.

Change-Id: I562ee6e88e52d7deeee6de588ef00dfc1c38a71a
Diffstat (limited to 'ripple/Cargo.lock')
-rw-r--r--ripple/Cargo.lock42
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"