23 lines
538 B
TOML
23 lines
538 B
TOML
[package]
|
|
name = "haxor"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
description = "memory hacking library"
|
|
repository = "https://github.com/elituf/haxor"
|
|
keywords = ["memory", "game", "hacking", "process"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "2", features = ["debug", "display", "from"] }
|
|
log = "0.4"
|
|
thiserror = "2"
|
|
windows = { version = "0.62", features = [
|
|
"Win32_System_Threading",
|
|
"Win32_System_Diagnostics_ToolHelp",
|
|
"Win32_System_Diagnostics_Debug",
|
|
] }
|
|
|
|
[lib]
|
|
doctest = false
|