2023-11-14 17:57:11 +01:00
|
|
|
[package]
|
|
|
|
name = "saekawa"
|
2023-11-26 10:22:56 +01:00
|
|
|
version = "0.3.1"
|
2023-11-14 17:57:11 +01:00
|
|
|
authors = ["beerpsi <lacvtg.a1.2023@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "0BSD"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
opt-level = "z" # Optimize for size.
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-15 21:37:42 +01:00
|
|
|
aes = "0.8.3"
|
2023-11-14 17:57:11 +01:00
|
|
|
anyhow = "1.0.75"
|
2023-11-18 17:10:50 +01:00
|
|
|
binary-reader = "0.4.5"
|
2023-11-15 21:37:42 +01:00
|
|
|
cbc = "0.1.2"
|
2023-11-14 17:57:11 +01:00
|
|
|
chrono = "0.4.31"
|
2023-11-15 21:37:42 +01:00
|
|
|
confy = "0.5.1"
|
2023-11-18 17:10:50 +01:00
|
|
|
crc32fast = "1.3.2"
|
2023-11-14 17:57:11 +01:00
|
|
|
env_logger = "0.10.1"
|
2023-11-15 21:37:42 +01:00
|
|
|
faster-hex = "0.8.1"
|
2023-11-14 17:57:11 +01:00
|
|
|
flate2 = "1.0.28"
|
2023-11-18 17:10:50 +01:00
|
|
|
hex-literal = "0.4.1"
|
2023-11-15 21:37:42 +01:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = "0.4.20"
|
2023-11-14 17:57:11 +01:00
|
|
|
num_enum = "0.7.1"
|
2023-11-15 21:37:42 +01:00
|
|
|
pbkdf2 = "0.12.2"
|
|
|
|
retour = { version = "0.3.1", features = ["static-detour"] }
|
|
|
|
serde = { version = "1.0.192", features = ["derive"] }
|
2023-11-14 17:57:11 +01:00
|
|
|
serde-aux = "4.2.0"
|
2023-11-15 21:37:42 +01:00
|
|
|
serde_json = "1.0.108"
|
|
|
|
sha1 = "0.10.6"
|
|
|
|
ureq = { version = "2.8.0", features = ["json"] }
|
|
|
|
url = "2.4.1"
|
|
|
|
widestring = "1.0.2"
|
2023-11-26 10:22:56 +01:00
|
|
|
winapi = { version = "0.3.9", features = ["winhttp", "minwindef", "debugapi", "synchapi"] }
|