cs2-dumper/Cargo.toml

33 lines
683 B
TOML
Raw Normal View History

2023-09-25 22:46:10 +08:00
[package]
name = "cs2-dumper"
2024-03-28 20:19:20 +08:00
version = "0.1.0"
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]
2024-03-28 20:19:20 +08:00
clap = { version = "4.5", features = ["cargo"] }
chrono = { version = "0.4", features = ["serde"] }
heck = "0.5"
2023-09-25 22:46:10 +08:00
log = "0.4"
2024-03-28 20:19:20 +08:00
memflow = "0.2"
memflow-native = { git = "https://github.com/memflow/memflow-native" }
pelite = "0.10"
phf = { version = "0.11", features = ["macros"] }
2023-09-25 22:46:10 +08:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-03-28 20:19:20 +08:00
simplelog = "0.12"
thiserror = "1.0"
2023-09-25 22:46:10 +08:00
2024-03-28 20:19:20 +08:00
[profile.dev]
opt-level = 1
2023-09-25 22:46:10 +08:00
2024-03-28 20:19:20 +08:00
[profile.dev.package."*"]
opt-level = 3
2024-02-26 05:37:56 +08:00
2023-09-25 22:46:10 +08:00
[profile.release]
2024-03-28 20:19:20 +08:00
lto = true
2023-09-25 22:46:10 +08:00
strip = true