mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-02 15:25:35 +08:00
* Updated for memflow 0.2.2 * Replaced periods with underscores in generated file names for easier inclusion * Program execution now continues if analysis fails at any point * Removed custom error type in favor of anyhow * Added logging to cs2-dumper.log * Now compilable on Linux
35 lines
719 B
TOML
35 lines
719 B
TOML
[package]
|
|
name = "cs2-dumper"
|
|
version = "0.1.2"
|
|
authors = ["a2x"]
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
repository = "https://github.com/a2x/cs2-dumper"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
heck = "0.5"
|
|
log = "0.4"
|
|
memflow = "0.2"
|
|
pelite = "0.10"
|
|
phf = { version = "0.11", features = ["macros"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
simplelog = "0.12"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
memflow-native = { git = "https://github.com/memflow/memflow-native" }
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|