mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-08-21 06:12:17 +08:00
Rewrote project in Rust
This commit is contained in:
27
Cargo.toml
Normal file
27
Cargo.toml
Normal file
@@ -0,0 +1,27 @@
|
||||
[package]
|
||||
name = "cs2-dumper"
|
||||
version = "0.1.0"
|
||||
authors = ["a2x"]
|
||||
edition = "2021"
|
||||
repository = "https://github.com/a2x/cs2-dumper"
|
||||
license = "MIT"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
simple_logger = "4.2"
|
||||
|
||||
[dependencies.windows]
|
||||
version = "0.51"
|
||||
features = [
|
||||
"Win32_Foundation",
|
||||
"Win32_System_Diagnostics_Debug",
|
||||
"Win32_System_Diagnostics_ToolHelp",
|
||||
"Win32_System_SystemInformation",
|
||||
"Win32_System_SystemServices",
|
||||
"Win32_System_Threading",
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
Reference in New Issue
Block a user