From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- tools/profiler/rust-helper/Cargo.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tools/profiler/rust-helper/Cargo.toml (limited to 'tools/profiler/rust-helper/Cargo.toml') diff --git a/tools/profiler/rust-helper/Cargo.toml b/tools/profiler/rust-helper/Cargo.toml new file mode 100644 index 0000000000..28f8276ee1 --- /dev/null +++ b/tools/profiler/rust-helper/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "profiler_helper" +version = "0.1.0" +authors = ["Markus Stange "] + +[dependencies] +memmap = "0.7" +rustc-demangle = "0.1" +uuid = "0.8" + +[dependencies.object] +version = "0.16" +optional = true +default-features = false +features = ["std", "read"] + +[dependencies.goblin] +optional = true +# The version and features of goblin need to match what's in object's Cargo.toml, +# because we really want object's goblin and not another instance of goblin. +version = "0.1" +features = ["endian_fd", "elf32", "elf64", "mach32", "mach64", "pe32", "pe64", "archive"] +default-features = false + +[dependencies.thin-vec] +version = "0.2.1" +features = ["gecko-ffi"] + +[features] +parse_elf = ["object", "goblin"] -- cgit v1.2.3