aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2021-08-21 23:53:02 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2021-08-21 23:53:02 +0200
commitf484179454761d3a35f6d98751d62ccebbc986aa (patch)
tree08688d9ef0a1eabd7ea942280649fd7ef90df21e /Cargo.toml
parent225e2d46b64d84aa08959036a1a6d03f1a22ef56 (diff)
downloadvdso-proxy-poc-f484179454761d3a35f6d98751d62ccebbc986aa.tar.gz
vdso-proxy-poc-f484179454761d3a35f6d98751d62ccebbc986aa.zip
add check for symbol version
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d7eb41d..a8975b2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,4 +6,10 @@ edition = "2018"
[dependencies]
libc = "0.2"
-goblin = { version = "0.4", default-features = false, features = ["std", "elf32", "elf64", "endian_fd"] }
+
+[dependencies.goblin]
+#version = "0.4"
+git = "https://github.com/johannst/goblin"
+branch = "elf-gnu-symbol-versioning-utils"
+default-features = false
+features = ["std", "elf32", "elf64", "endian_fd"]