[package] name = "parasite" version = "0.1.1" edition = "2021" description = "Utilities for an Injected Windows Dll" license = "MIT" repository = "https://github.com/0xFounders/parasite" homepage = "https://github.com/0xFounders/parasite" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] log = "0.4.17" winapi = { version = "0.3.9", features = ["winuser"] } chrono = { version = "0.4.22", optional = true } widestring = { version = "1.0.2", optional = true } simplelog = { version = "0.12.0", optional = true } [features] default = ["panic", "logs"] panic = ["dep:chrono", "dep:widestring"] logs = ["dep:simplelog"] [package.metadata.docs.rs] features = ["panic", "logs"] default-target = "x86_64-pc-windows-msvc" targets = ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]