Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 13, 2025
1 parent 0d555ef commit c63cb9f
Show file tree
Hide file tree
Showing 12 changed files with 109 additions and 109 deletions.
2 changes: 1 addition & 1 deletion .mise.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[tools]
node = "22"
rust = "1.82"
rust = "1.84.0"
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions crates/kftray-commons/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository = "https://github.com/hcavarsan/kftray"
edition = "2021"

[dependencies]
anyhow = "1.0.93"
bytes = "1.8.0"
anyhow = "1.0.95"
bytes = "1.9.0"
dashmap = "6.1.0"
flate2 = "1.0"
httparse = "1.9.5"
Expand All @@ -21,10 +21,10 @@ lazy_static = "1.5.0"
log = "0.4"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.132"
tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "full"] }
tracing = "0.1.40"
uuid = { version = "1.11.0", features = ["v4"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "full"] }
tracing = "0.1.41"
uuid = { version = "1.11.1", features = ["v4"] }
dirs = "5.0.1"
tauri = { version = "1.8", default-features = false, features = [
"updater",
Expand All @@ -34,9 +34,9 @@ tauri = { version = "1.8", default-features = false, features = [
"icon-png",
"devtools",
] }
sqlx = { version = "0.8.2", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"] }
sqlx = { version = "0.8.3", default-features = false, features = ["sqlite", "runtime-tokio-native-tls"] }
hostsfile = { git = "https://github.com/tonarino/innernet", branch = "main" }
tempfile = "3.14.0"
tempfile = "3.15.0"
portpicker = "0.1.1"
futures = "0.3.31"

Expand Down
16 changes: 8 additions & 8 deletions crates/kftray-portforward/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ repository = "https://github.com/hcavarsan/kftray"
edition = "2021"

[dependencies]
anyhow = "1.0.93"
anyhow = "1.0.95"
async-trait = "0.1"
bytes = "1.8.0"
bytes = "1.9.0"
dashmap = "6.1.0"
flate2 = "1.0"
futures = "0.3.31"
Expand All @@ -25,15 +25,15 @@ lazy_static = "1.5.0"
log = "0.4"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.132"
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"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "full"] }
tokio-stream = { version = "0.1.17", features = ["net"] }
tracing = "0.1.41"
uuid = { version = "1.11.1", features = ["v4"] }
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"] }
tower = { version = "0.5.2", features = ["util"] }
hyper-util = "0.1.10"
dirs = "5.0.1"
openssl = { version = "0.10.68", features = ["vendored"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/kftray-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
log = "0.4"
env_logger = "0.11.5"
url = "2.5.0"
env_logger = "0.11.6"
url = "2.5.4"
async-trait = "0.1"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/kftray-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.82.0-alpine3.20 AS builder
FROM rust:1.84.0-alpine3.20 AS builder

RUN apk add --no-cache musl-dev

Expand All @@ -11,7 +11,7 @@ COPY . .
RUN cargo build --release
RUN cargo install --path .

FROM alpine:3.20
FROM alpine:3.21

COPY --from=builder /usr/local/cargo/bin/kftray-server /kftray-server

Expand Down
28 changes: 14 additions & 14 deletions crates/kftray-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "src/lib.rs"
tauri-build = { version = "1.5", features = [] }

[dependencies]
serde_json = "1.0.132"
serde_json = "1.0.135"
tauri = { version = "1.8", default-features = false, features = [
"updater",
"api-all",
Expand All @@ -26,49 +26,49 @@ tauri = { version = "1.8", default-features = false, features = [
"devtools",
] }
tauri-plugin-positioner = { version = "1.0.5", features = ["system-tray"] }
tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "full"] }
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio-native-tls"] }
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "full"] }
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio-native-tls"] }
dirs = "5.0.1"
reqwest = "0.12.9"
reqwest = "0.12.12"
base64 = "0.22.1"
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"
env_logger = "0.11.6"
openssl = { version = "0.10.68", features = ["vendored"] }
openssl-sys = { version = "0.9.104", features = ["vendored"] }
kube = { version = "0.96.0", features = ["client", "config", "rustls-tls", "ws", "openssl-tls"] }
k8s-openapi = { version = "0.23", default-features = false, features = [
"latest",
] }
tokio-stream = { version = "0.1.16", features = ["net"] }
tokio-stream = { version = "0.1.17", features = ["net"] }
futures = "0.3.31"
anyhow = "1.0.93"
tracing = "0.1.40"
anyhow = "1.0.95"
tracing = "0.1.41"
hyper = { version = "1.4.1", features = ["client", "http1", "http2"] }
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"
kube-runtime = "0.96"
tower = "0.5.1"
tower = "0.5.2"
whoami = "1.5.2"
tempfile = "3.13"
h2 = { optional = true, version = "0.4.6" }
h2 = { optional = true, version = "0.4.7" }
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
open = "5.3.0"
open = "5.3.2"

kftray-portforward = { path = "../kftray-portforward" }
kftray-commons = { path = "../kftray-commons" }
netstat2 = { git = "https://github.com/hcavarsan/netstat2-rs" }
sysinfo = "0.32.0"
sysinfo = "0.33.0"
secrecy = "0.10.3"
git2 = "0.19.0"
git2 = "0.20.0"
url = "2.5.3"

[dev-dependencies]
tempfile = "3.13"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }

[features]
# by default Tauri runs in production mode
Expand Down
16 changes: 8 additions & 8 deletions crates/kftui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build = "build.rs"

[dependencies]

serde_json = "1.0.132"
serde_json = "1.0.135"
tauri = { version = "1.8", default-features = false, features = [
"updater",
"api-all",
Expand All @@ -23,8 +23,8 @@ tauri = { version = "1.8", default-features = false, features = [
"icon-png",
"devtools",
] }
tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "full"] }
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio-native-tls"] }
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "full"] }
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio-native-tls"] }
dirs = "5.0.1"
base64 = "0.22.1"
hostsfile = { git = "https://github.com/tonarino/innernet", branch = "main" }
Expand All @@ -39,20 +39,20 @@ kube = { version = "0.96.0", features = [
k8s-openapi = { version = "0.23", default-features = false, features = [
"latest",
] }
tokio-stream = { version = "0.1.16", features = ["net"] }
tokio-stream = { version = "0.1.17", features = ["net"] }
futures = "0.3.31"
anyhow = "1.0.93"
tracing = "0.1.40"
anyhow = "1.0.95"
tracing = "0.1.41"
hyper = { version = "1.4.1", features = ["client", "http1", "http2"] }
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"
kube-runtime = "0.96"
tower = "0.5.1"
tower = "0.5.2"
whoami = "1.5.2"
tempfile = "3.13"
h2 = { optional = true, version = "0.4.6" }
h2 = { optional = true, version = "0.4.7" }
libc = "0.2"
kftray-commons = { path = "../kftray-commons" }
kftray-portforward = { path = "../kftray-portforward" }
Expand Down
6 changes: 3 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@vitejs/plugin-react-swc": "^3.7.0",
"lodash": "^4.17",
"@types/lodash": "^4.17",
"lucide-react": "^0.456.0",
"lucide-react": "^0.471.0",
"next-themes": "^0.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down Expand Up @@ -51,8 +51,8 @@
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react-query": "^3.39.3",
"react-refresh": "^0.14.2",
"typescript": "5.6.3",
"react-refresh": "^0.16.0",
"typescript": "5.7.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2"
}
Expand Down
4 changes: 2 additions & 2 deletions hacks/kftray-utils/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions hacks/kftray-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ regex = "1"
log = "0.4"
serde_json = "1.0"
image = "0.25.5"
ico = "0.3.0"
ico = "0.4.0"
thiserror = "2"
env_logger = "0.11.5"
env_logger = "0.11.6"


[[bin]]
Expand Down
Loading

0 comments on commit c63cb9f

Please sign in to comment.