Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Nov 20, 2024
1 parent c6a6587 commit 55e293a
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 16 deletions.
20 changes: 10 additions & 10 deletions build/win32/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
30 changes: 24 additions & 6 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"
Expand All @@ -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]
Expand Down

0 comments on commit 55e293a

Please sign in to comment.