injectionforge/Cargo.toml

38 lines
971 B
TOML
Raw Normal View History

[package]
name = "frida-deepfreeze-rs"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[[bin]]
name = "standalone"
2023-05-25 17:48:18 +03:00
path = "src/main.rs"
[features]
default = ["frida"]
dotnet = ["dep:csbindgen"]
frida = ["dep:frida", "dep:lazy_static", "dep:serde", "dep:serde_json"]
[dependencies]
2024-01-01 02:08:24 +00:00
frida = { version = "0.4.4", features = ["auto-download"], optional = true }
lazy_static = { version = "1.4.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
2023-05-25 17:48:18 +03:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winnt", "libloaderapi"] }
windows-sys = { version = "0.52.0", features = ["Win32_System_ClrHosting"], optional = true }
2023-05-25 17:48:18 +03:00
2023-05-28 02:07:20 +03:00
[target.'cfg(unix)'.dependencies]
2024-03-04 01:12:39 +00:00
ctor = "0.2.7"
2023-05-28 02:07:20 +03:00
2023-05-25 17:48:18 +03:00
[build-dependencies]
2024-01-01 02:08:30 +00:00
goblin = "0.8.0"
csbindgen = { version = "1.9.0", optional = true}
[dev-dependencies]
pretty_assertions = "1.4.0"
mylib = { path = "tests/mylib" }