mirror of
https://github.com/tailscale/tailscale.git
synced 2026-05-05 04:06:35 +02:00
Updates #19255 Signed-off-by: Nathan Perry <nathan@tailscale.com> Change-Id: Idf69f23b5a61417d5fa3638a276d64856a6a6964
25 lines
471 B
TOML
25 lines
471 B
TOML
[package]
|
|
name = "go"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
windows-sys = { version = "0.61", features = [
|
|
"Win32",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_Environment",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Threading",
|
|
"Win32_Security",
|
|
"Win32_System_SystemInformation",
|
|
"Win32_System_IO",
|
|
"Win32_System_Console",
|
|
] }
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|