cs2-dumper/Cargo.toml

35 lines
782 B
TOML
Raw Normal View History

2023-09-25 22:46:10 +08:00
[package]
name = "cs2-dumper"
version = "1.1.5"
2023-09-25 22:46:10 +08:00
authors = ["a2x"]
edition = "2021"
2023-10-14 13:18:52 +08:00
readme = "README.md"
2023-09-25 22:46:10 +08:00
repository = "https://github.com/a2x/cs2-dumper"
license = "MIT"
[dependencies]
2023-10-20 13:23:43 +08:00
anyhow = "1.0"
2023-10-03 00:00:52 +08:00
chrono = "0.4"
2023-09-28 22:41:21 +08:00
clap = { version = "4.4", features = ["derive"] }
2023-10-26 13:41:34 +08:00
goblin = { git = "https://github.com/m4b/goblin" }
2023-10-05 17:24:14 +08:00
lazy_static = "1.4"
2023-09-25 22:46:10 +08:00
log = "0.4"
2023-10-26 13:41:34 +08:00
regex = "1.10"
2023-09-25 22:46:10 +08:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2023-10-26 13:41:34 +08:00
simplelog = { version = "0.12", features = ["paris"] }
2023-09-25 22:46:10 +08:00
[dependencies.windows]
version = "0.54"
2023-09-25 22:46:10 +08:00
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_System_Threading",
]
[profile.release]
strip = true