You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
896 B
TOML
35 lines
896 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/clean_flash_common",
|
|
"crates/clean_flash_ui",
|
|
"crates/clean_flash_installer",
|
|
"crates/clean_flash_uninstaller",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
ab_glyph = "0.2"
|
|
sevenz-rust2 = { version = "0.20", default-features = false, features = ["compress", "util"] }
|
|
minifb = "0.28"
|
|
windows-sys = { version = "0.61", features = [
|
|
"Win32_Foundation",
|
|
"Win32_Networking_WinHttp",
|
|
"Win32_Security",
|
|
"Win32_Security_Authorization",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_RestartManager",
|
|
"Win32_System_Threading",
|
|
"Win32_System_ProcessStatus",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Registry",
|
|
"Win32_System_SystemInformation",
|
|
"Win32_UI_HiDpi",
|
|
"Win32_UI_Shell",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] }
|
|
|
|
[profile."release-lto"]
|
|
inherits = "release"
|
|
codegen-units = 1
|
|
lto = "fat"
|
|
strip = true |