Skip to content

Commit 55e293a

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent c6a6587 commit 55e293a

File tree

2 files changed

+34
-16
lines changed

2 files changed

+34
-16
lines changed

build/win32/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ slog-term = "2.9.1"
1414
[target.'cfg(windows)'.dependencies.windows-sys]
1515
version = "0.42"
1616
features = [
17-
"Win32_Foundation",
18-
"Win32_System_Shutdown",
19-
"Win32_UI_WindowsAndMessaging",
20-
"Win32_System_Threading",
21-
"Win32_System_LibraryLoader",
22-
"Win32_System_Diagnostics_Debug",
23-
"Win32_Storage_FileSystem",
24-
"Win32_Security",
25-
"Win32_System_ProcessStatus",
26-
"Win32_System_Diagnostics_ToolHelp"
17+
"Win32_Foundation",
18+
"Win32_System_Shutdown",
19+
"Win32_UI_WindowsAndMessaging",
20+
"Win32_System_Threading",
21+
"Win32_System_LibraryLoader",
22+
"Win32_System_Diagnostics_Debug",
23+
"Win32_Storage_FileSystem",
24+
"Win32_Security",
25+
"Win32_System_ProcessStatus",
26+
"Win32_System_Diagnostics_ToolHelp",
2727
]
2828

2929
[profile.release]

cli/Cargo.toml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,18 @@ name = "code"
1515
futures = "0.3.31"
1616
clap = { version = "4.5.20", features = ["derive", "env"] }
1717
open = "5.3.0"
18-
reqwest = { version = "0.12.9", default-features = false, features = ["json", "stream", "native-tls"] }
18+
reqwest = { version = "0.12.9", default-features = false, features = [
19+
"json",
20+
"stream",
21+
"native-tls",
22+
] }
1923
tokio = { version = "1.41.0", features = ["full"] }
2024
tokio-util = { version = "0.7.12", features = ["compat", "codec"] }
2125
flate2 = { version = "1.0.34", default-features = false, features = ["zlib"] }
22-
zip = { version = "2.2.0", default-features = false, features = ["time", "deflate-zlib"] }
26+
zip = { version = "2.2.0", default-features = false, features = [
27+
"time",
28+
"deflate-zlib",
29+
] }
2330
regex = "1.11.1"
2431
lazy_static = "1.5.0"
2532
sysinfo = { version = "0.32.0", default-features = false }
@@ -31,11 +38,22 @@ dirs = "5.0.1"
3138
rand = "0.8.5"
3239
opentelemetry = { version = "0.26.0", features = ["rt-tokio"] }
3340
serde_bytes = "0.11.15"
34-
chrono = { version = "0.4.38", features = ["serde", "std", "clock"], default-features = false }
41+
chrono = { version = "0.4.38", features = [
42+
"serde",
43+
"std",
44+
"clock",
45+
], default-features = false }
3546
gethostname = "0.5.0"
3647
libc = "0.2.161"
37-
tunnels = { git = "https://github.com/microsoft/dev-tunnels", rev = "8cae9b2a24c65c6c1958f5a0e77d72b23b5c6c30", default-features = false, features = ["connections"] }
38-
keyring = { version = "3.6.1", default-features = false, features = ["linux-secret-service-rt-tokio-crypto-openssl", "platform-windows", "platform-macos", "linux-keyutils"] }
48+
tunnels = { git = "https://github.com/microsoft/dev-tunnels", rev = "8cae9b2a24c65c6c1958f5a0e77d72b23b5c6c30", default-features = false, features = [
49+
"connections",
50+
] }
51+
keyring = { version = "3.6.1", default-features = false, features = [
52+
"linux-secret-service-rt-tokio-crypto-openssl",
53+
"platform-windows",
54+
"platform-macos",
55+
"linux-keyutils",
56+
] }
3957
dialoguer = "0.11.0"
4058
hyper = { version = "1.5.0", features = ["server", "http1", "runtime"] }
4159
indicatif = "0.17.8"
@@ -56,7 +74,7 @@ bytes = "1.8.0"
5674
tar = "0.4.42"
5775

5876
[build-dependencies]
59-
serde = { version="1.0.214", features = ["derive"] }
77+
serde = { version = "1.0.214", features = ["derive"] }
6078
serde_json = "1.0.132"
6179

6280
[target.'cfg(windows)'.dependencies]

0 commit comments

Comments
 (0)