mirror of
https://github.com/Kudaes/DInvoke_rs
synced 2026-06-08 11:32:25 +00:00
bfb21db4cc
- Several QoL changes and code improvements - windows-rs crate version upgraded to 0.62 - New Windows API prototypes, structures and constants added to crate data - HWBP logic fixed to solve the error reported on issue #12 - New crate utils with some frequently required functions
25 lines
508 B
TOML
25 lines
508 B
TOML
[package]
|
|
name = "dinvokeRs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.dev]
|
|
debug-assertions = false
|
|
|
|
[profile.release]
|
|
debug-assertions = false # required to avoid misaligned pointer dereference panics
|
|
strip = true
|
|
|
|
[features]
|
|
syscall = ["dinvoke/syscall"]
|
|
|
|
[dependencies]
|
|
dinvoke = { path = "dinvoke"}
|
|
manualmap = { path = "manualmap" }
|
|
data = { path = "data" }
|
|
overload = { path = "overload" }
|
|
dmanager = { path = "dmanager" }
|
|
utils = { path = "utils" }
|
|
|
|
[build-dependencies]
|
|
static_vcruntime = "2.0" |