Files
vscode/build/win32/Cargo.toml
T
RoboandGitHub d597a37462 fix: agent app cleanup post update on windows (#307387)
* fix: agent app cleanup post update on windows

* chore: bump inno_updater
2026-04-02 15:56:48 +02:00

39 lines
786 B
TOML

[package]
name = "inno_updater"
version = "0.21.0"
authors = ["Microsoft <monacotools@microsoft.com>"]
edition = "2024"
build = "build.rs"
[dependencies]
byteorder = "1.4.3"
crc = "3.0.1"
slog = "2.7.0"
slog-async = "2.7.0"
slog-term = "2.9.2"
tempfile = "3.5.0"
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.42"
features = [
"Win32_Foundation",
"Win32_System_Shutdown",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Threading",
"Win32_System_LibraryLoader",
"Win32_System_Diagnostics_Debug",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_ProcessStatus",
"Win32_System_Diagnostics_ToolHelp"
]
[profile.release]
lto = true
panic = 'abort'
[[bin]]
name = "test_helper"
path = "src/bin/test_helper.rs"
test = false