diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-08-08 16:50:14 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-08-08 16:50:14 +0200 |
commit | eda0273c1b36b4959e5c61e3d209029e1d8de088 (patch) | |
tree | a879bfad2454b16240852ec518e50b207cf06350 /Cargo.toml | |
download | vdso-proxy-poc-eda0273c1b36b4959e5c61e3d209029e1d8de088.tar.gz vdso-proxy-poc-eda0273c1b36b4959e5c61e3d209029e1d8de088.zip |
add vdso proxy poc
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d7eb41d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "vdso-proxy-poc" +authors = ["johannst <johannes.stoelp@gmail.com>"] +version = "0.1.0" +edition = "2018" + +[dependencies] +libc = "0.2" +goblin = { version = "0.4", default-features = false, features = ["std", "elf32", "elf64", "endian_fd"] } |