diff --git a/build/win32/Cargo.toml b/build/win32/Cargo.toml index bee143450e426..93e30fc68c70b 100644 --- a/build/win32/Cargo.toml +++ b/build/win32/Cargo.toml @@ -14,16 +14,16 @@ slog-term = "2.9.1" [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" + "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] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c7429da2c302e..5a69f9e979c36 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -15,11 +15,18 @@ name = "code" futures = "0.3.31" clap = { version = "4.5.20", features = ["derive", "env"] } open = "5.3.0" -reqwest = { version = "0.12.9", default-features = false, features = ["json", "stream", "native-tls"] } +reqwest = { version = "0.12.9", default-features = false, features = [ + "json", + "stream", + "native-tls", +] } tokio = { version = "1.41.0", features = ["full"] } tokio-util = { version = "0.7.12", features = ["compat", "codec"] } flate2 = { version = "1.0.34", default-features = false, features = ["zlib"] } -zip = { version = "2.2.0", default-features = false, features = ["time", "deflate-zlib"] } +zip = { version = "2.2.0", default-features = false, features = [ + "time", + "deflate-zlib", +] } regex = "1.11.1" lazy_static = "1.5.0" sysinfo = { version = "0.32.0", default-features = false } @@ -31,11 +38,22 @@ dirs = "5.0.1" rand = "0.8.5" opentelemetry = { version = "0.26.0", features = ["rt-tokio"] } serde_bytes = "0.11.15" -chrono = { version = "0.4.38", features = ["serde", "std", "clock"], default-features = false } +chrono = { version = "0.4.38", features = [ + "serde", + "std", + "clock", +], default-features = false } gethostname = "0.5.0" libc = "0.2.161" -tunnels = { git = "https://github.com/microsoft/dev-tunnels", rev = "8cae9b2a24c65c6c1958f5a0e77d72b23b5c6c30", default-features = false, features = ["connections"] } -keyring = { version = "3.6.1", default-features = false, features = ["linux-secret-service-rt-tokio-crypto-openssl", "platform-windows", "platform-macos", "linux-keyutils"] } +tunnels = { git = "https://github.com/microsoft/dev-tunnels", rev = "8cae9b2a24c65c6c1958f5a0e77d72b23b5c6c30", default-features = false, features = [ + "connections", +] } +keyring = { version = "3.6.1", default-features = false, features = [ + "linux-secret-service-rt-tokio-crypto-openssl", + "platform-windows", + "platform-macos", + "linux-keyutils", +] } dialoguer = "0.11.0" hyper = { version = "1.5.0", features = ["server", "http1", "runtime"] } indicatif = "0.17.8" @@ -56,7 +74,7 @@ bytes = "1.8.0" tar = "0.4.42" [build-dependencies] -serde = { version="1.0.214", features = ["derive"] } +serde = { version = "1.0.214", features = ["derive"] } serde_json = "1.0.132" [target.'cfg(windows)'.dependencies]