[package] authors = [ "Toru Ogawa ", "Yuki Yamada ", "Makoto Shimazu ", "Shunsuke Nakamura ", ] description = "pwntools for Rust" edition = "2018" license = "Apache-2.0" name = "pwntools" repository = "https://github.com/makotoshimazu/pwntools-rs" version = "0.4.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [package.metadata.docs.rs] # Do not include `use-unicorn` feature because building unicorn needs # network connectivity and it's disallowed in the crates.io's docker image. no-default-features = true [dependencies] elf-utilities = "=0.2.8" num-derive = "0.3" num-traits = "0.2" # TODO: Once https://github.com/unicorn-engine/unicorn/pull/1447 is merged to trunk and published, use the official unicorn crate. # unicorn = { git = "https://github.com/Hakuyume/unicorn", branch = "build-in-build-script-master" } unicorn-engine = { version = "2.0.0-rc5", optional = true } async-trait = "0.1.51" tokio = { version = "1.10.0", features=["macros", "io-util", "io-std", "process", "net"] } futures = "0.3.16" [dev-dependencies] clap = {version = "3", features = ["derive"]} [features] default = ["use-unicorn"] use-unicorn = ["unicorn-engine"]