diff --git a/Cargo.lock b/Cargo.lock index 5d0b16a6..3d425071 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3168,7 +3168,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" dependencies = [ "cfg-if", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] @@ -7113,7 +7113,7 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] diff --git a/crates/kftray-commons/Cargo.toml b/crates/kftray-commons/Cargo.toml index c3a3990b..d0425b30 100644 --- a/crates/kftray-commons/Cargo.toml +++ b/crates/kftray-commons/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/hcavarsan/kftray" edition = "2021" [dependencies] -anyhow = "1.0.91" +anyhow = "1.0.93" bytes = "1.8.0" dashmap = "6.1.0" flate2 = "1.0" @@ -22,7 +22,7 @@ log = "0.4" rand = "0.8.5" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.132" -tokio = { version = "1.41.0", features = ["rt-multi-thread", "macros", "full"] } +tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "full"] } tracing = "0.1.40" uuid = { version = "1.11.0", features = ["v4"] } dirs = "5.0.1" @@ -36,7 +36,7 @@ tauri = { version = "1.8", default-features = false, features = [ ] } sqlx = { version = "0.8.2", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"] } hostsfile = { git = "https://github.com/tonarino/innernet", branch = "main" } -tempfile = "3.13.0" +tempfile = "3.14.0" portpicker = "0.1.1" futures = "0.3.31" diff --git a/crates/kftray-portforward/Cargo.toml b/crates/kftray-portforward/Cargo.toml index b192d61f..ff0da846 100644 --- a/crates/kftray-portforward/Cargo.toml +++ b/crates/kftray-portforward/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/hcavarsan/kftray" edition = "2021" [dependencies] -anyhow = "1.0.91" +anyhow = "1.0.93" async-trait = "0.1" bytes = "1.8.0" dashmap = "6.1.0" @@ -26,7 +26,7 @@ log = "0.4" rand = "0.8.5" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.132" -tokio = { version = "1.41.0", features = ["rt-multi-thread", "macros", "full"] } +tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "full"] } tokio-stream = { version = "0.1.16", features = ["net"] } tracing = "0.1.40" uuid = { version = "1.11.0", features = ["v4"] } @@ -34,7 +34,7 @@ whoami = "1.5.2" hostsfile = { git = "https://github.com/tonarino/innernet", branch = "main" } kftray-commons = { path = "../kftray-commons" } tower = { version = "0.5.1", features = ["util"] } -hyper-util = "0.1.9" +hyper-util = "0.1.10" dirs = "5.0.1" openssl = { version = "0.10.68", features = ["vendored"] } openssl-sys = { version = "0.9.104", features = ["vendored"] } diff --git a/crates/kftray-tauri/Cargo.toml b/crates/kftray-tauri/Cargo.toml index 8c89dfe4..9e84744c 100644 --- a/crates/kftray-tauri/Cargo.toml +++ b/crates/kftray-tauri/Cargo.toml @@ -26,12 +26,12 @@ tauri = { version = "1.8", default-features = false, features = [ "devtools", ] } tauri-plugin-positioner = { version = "1.0.5", features = ["system-tray"] } -tokio = { version = "1.41.0", features = ["rt-multi-thread", "macros", "full"] } +tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "full"] } sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio-native-tls"] } dirs = "5.0.1" -reqwest = "0.12.8" +reqwest = "0.12.9" base64 = "0.22.1" -keyring = { version = "3.6.0", features = ["apple-native", "windows-native", "linux-native"] } +keyring = { version = "3.6.1", features = ["apple-native", "windows-native", "linux-native"] } hostsfile = { git = "https://github.com/tonarino/innernet", branch = "main" } log = "0.4" env_logger = "0.11.5" @@ -43,10 +43,10 @@ k8s-openapi = { version = "0.23", default-features = false, features = [ ] } tokio-stream = { version = "0.1.16", features = ["net"] } futures = "0.3.31" -anyhow = "1.0.91" +anyhow = "1.0.93" tracing = "0.1.40" hyper = { version = "1.4.1", features = ["client", "http1", "http2"] } -hyper-util = { version = "0.1.9", features = ["client-legacy", "http1", "tokio"] } +hyper-util = { version = "0.1.10", features = ["client-legacy", "http1", "tokio"] } lazy_static = "1.5.0" serde = { version = "1.0", features = ["derive"] } rand = "0.8.5" diff --git a/crates/kftui/Cargo.toml b/crates/kftui/Cargo.toml index 2f3ec974..62245004 100644 --- a/crates/kftui/Cargo.toml +++ b/crates/kftui/Cargo.toml @@ -23,7 +23,7 @@ tauri = { version = "1.8", default-features = false, features = [ "icon-png", "devtools", ] } -tokio = { version = "1.41.0", features = ["rt-multi-thread", "macros", "full"] } +tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "full"] } sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio-native-tls"] } dirs = "5.0.1" base64 = "0.22.1" @@ -41,10 +41,10 @@ k8s-openapi = { version = "0.23", default-features = false, features = [ ] } tokio-stream = { version = "0.1.16", features = ["net"] } futures = "0.3.31" -anyhow = "1.0.91" +anyhow = "1.0.93" tracing = "0.1.40" hyper = { version = "1.4.1", features = ["client", "http1", "http2"] } -hyper-util = { version = "0.1.9", features = ["client-legacy", "http1", "tokio"] } +hyper-util = { version = "0.1.10", features = ["client-legacy", "http1", "tokio"] } lazy_static = "1.5.0" serde = { version = "1.0", features = ["derive"] } rand = "0.8.5" diff --git a/hacks/kftray-utils/Cargo.toml b/hacks/kftray-utils/Cargo.toml index 95110b1f..0a2ce21a 100644 --- a/hacks/kftray-utils/Cargo.toml +++ b/hacks/kftray-utils/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" regex = "1" log = "0.4" serde_json = "1.0" -image = "0.25.2" +image = "0.25.5" ico = "0.3.0" thiserror = "1" env_logger = "0.11.5"