2023-11-14 17:57:11 +01:00
|
|
|
[package]
|
|
|
|
name = "saekawa"
|
2024-06-26 19:49:50 +02:00
|
|
|
version = "0.4.1"
|
2023-11-14 17:57:11 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "0BSD"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2024-06-27 04:40:15 +02:00
|
|
|
[profile.release]
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
opt-level = "z" # Optimize for size.
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
|
|
|
|
2023-11-14 17:57:11 +01:00
|
|
|
[dependencies]
|
2024-06-26 18:08:21 +02:00
|
|
|
aes = "0.8.4"
|
2023-11-15 21:37:42 +01:00
|
|
|
cbc = "0.1.2"
|
2024-06-26 18:08:21 +02:00
|
|
|
chrono = "0.4.38"
|
2024-03-23 11:01:16 +01:00
|
|
|
confy = "0.6.1"
|
|
|
|
crochet = "0.2.3"
|
2024-06-26 18:08:21 +02:00
|
|
|
env_logger = "0.11.3"
|
2023-12-16 15:27:25 +01:00
|
|
|
faster-hex = "0.9.0"
|
2024-06-26 18:08:21 +02:00
|
|
|
flate2 = "1.0.30"
|
|
|
|
lightningscanner = "1.0.2"
|
|
|
|
log = "0.4.21"
|
|
|
|
num_enum = "0.7.2"
|
2023-11-15 21:37:42 +01:00
|
|
|
pbkdf2 = "0.12.2"
|
2024-06-26 18:08:21 +02:00
|
|
|
rand = "0.8.5"
|
|
|
|
rust-ini = "0.21.0"
|
|
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
|
|
serde-aux = "4.5.0"
|
|
|
|
serde_json = "1.0.117"
|
2023-11-15 21:37:42 +01:00
|
|
|
sha1 = "0.10.6"
|
2024-06-26 18:08:21 +02:00
|
|
|
sha2 = "0.10.8"
|
|
|
|
snafu = "0.8.3"
|
|
|
|
ureq = { version = "2.9.7", features = ["json"] }
|
|
|
|
url = { version = "2.5.2", features = ["serde"] }
|
|
|
|
widestring = "1.1.0"
|
|
|
|
winapi = { version = "0.3.9", features = ["minwindef", "winnt", "psapi", "processthreadsapi", "libloaderapi", "errhandlingapi", "winhttp", "synchapi", "debugapi", "wincon", "heapapi", "winbase", "wincrypt", "softpub", "wintrust"] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
snafu = "0.8.3"
|
|
|
|
vergen = { version = "8.3.1", features = ["build", "git", "gitcl"] }
|