saekawa/Cargo.toml
2024-07-28 01:05:01 +07:00

66 lines
1.3 KiB
TOML

[package]
name = "saekawa"
version = "0.4.5"
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]
aes = "0.8.4"
cbc = "0.1.2"
chrono = "0.4.38"
confy = "0.6.1"
crochet = "0.2.3"
dlopen2 = "0.6.0"
env_logger = { version = "0.11.3", default-features = false }
faster-hex = "0.9.0"
flate2 = "1.0.30"
lightningscanner = "1.0.2"
log = "0.4.21"
num_enum = "0.7.2"
pbkdf2 = "0.12.2"
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"
sha1 = "0.10.6"
sha2 = "0.10.8"
snafu = "0.8.3"
ureq = { version = "2.9.7", features = ["json", "native-tls"] }
url = { version = "2.5.2", features = ["serde"] }
widestring = "1.1.0"
[dependencies.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"] }