Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/win32/Cargo.toml
3520 views
1
[package]
2
name = "inno_updater"
3
version = "0.16.0"
4
authors = ["Microsoft <[email protected]>"]
5
build = "build.rs"
6
7
[dependencies]
8
byteorder = "1.4.3"
9
crc = "3.0.1"
10
slog = "2.7.0"
11
slog-async = "2.7.0"
12
slog-term = "2.9.1"
13
tempfile = "3.5.0"
14
15
[target.'cfg(windows)'.dependencies.windows-sys]
16
version = "0.42"
17
features = [
18
"Win32_Foundation",
19
"Win32_System_Shutdown",
20
"Win32_UI_WindowsAndMessaging",
21
"Win32_System_Threading",
22
"Win32_System_LibraryLoader",
23
"Win32_System_Diagnostics_Debug",
24
"Win32_Storage_FileSystem",
25
"Win32_Security",
26
"Win32_System_ProcessStatus",
27
"Win32_System_Diagnostics_ToolHelp"
28
]
29
30
[profile.release]
31
lto = true
32
panic = 'abort'
33
34