cs2-dumper/Cargo.toml

33 lines
679 B
TOML
Raw Normal View History

2023-09-25 22:46:10 +08:00
[package]
name = "cs2-dumper"
2023-10-05 17:24:14 +08:00
version = "1.1.0"
2023-09-25 22:46:10 +08:00
authors = ["a2x"]
edition = "2021"
repository = "https://github.com/a2x/cs2-dumper"
license = "MIT"
[dependencies]
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-05 17:24:14 +08:00
lazy_static = "1.4"
2023-09-25 22:46:10 +08:00
log = "0.4"
2023-10-03 08:29:17 +08:00
regex = "1.9"
2023-09-25 22:46:10 +08:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simple_logger = "4.2"
2023-10-01 12:43:48 +08:00
thiserror = "1.0"
2023-09-25 22:46:10 +08:00
[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