mirror of
https://github.com/beerpiss/saekawa.git
synced 2024-11-23 23:00:58 +01:00
deal with the insane number of features you have to pull in
This commit is contained in:
parent
fc04a5ee01
commit
9e8bc35479
25
Cargo.toml
25
Cargo.toml
@ -8,8 +8,8 @@ license = "0BSD"
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[profile.release]
|
||||
strip = true # Automatically strip symbols from the binary.
|
||||
opt-level = "z" # Optimize for size.
|
||||
strip = true # Automatically strip symbols from the binary.
|
||||
opt-level = "z" # Optimize for size.
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
panic = "abort"
|
||||
@ -38,7 +38,26 @@ 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"] }
|
||||
|
||||
[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"
|
||||
|
Loading…
Reference in New Issue
Block a user