anti-debugging 0.0.0

Tools to detect and avoid debugging
[package]
name = "anti-debugging"
version = "0.0.0"
description = "Tools to detect and avoid debugging"
authors = ["Jesus Hernandez <jesushdez@protonmail.com>"]
license = "Unlicense"
keywords = ["anti-debugging", "debugging", "protected"]
categories = ["development-tools"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/jhg/anti-debugging-rs/"
exclude = [".github/**", ".vscode/**"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
obfstr = "0.3"

[target.'cfg(all(target_arch = "x86_64", target_os = "windows"))'.dependencies]
winapi = { version = "0.3", features = ["debugapi"] }

[target.'cfg(target_family = "unix")'.dependencies]
ptrace = "0.1"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"