Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-karpenko committed Jul 24, 2024
1 parent ae21370 commit 19e3459
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: cargo doc --no-deps

- name: Light tests
run: cargo test --lib --all
run: cargo test --all

- uses: nolar/setup-k3d-k3s@v1
with:
Expand All @@ -56,4 +56,4 @@ jobs:
k3d-args: "--no-lb --no-rollback --k3s-arg --disable=traefik,servicelb,metrics-server@server:*"

- name: Heavy tests
run: cargo test --lib --all -- --ignored
run: cargo test --all -- --ignored
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
RUSTFLAGS: -Cinstrument-coverage
LLVM_PROFILE_FILE: kube-lease-manager-%p-%m.profraw
RUST_LOG: kube_lease_manager=debug
run: cargo test --lib --all -- --include-ignored
run: cargo test --all -- --include-ignored

- name: Generate coverage
run: |
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["kubernetes", "async", "lease", "leader", "election"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/alex-karpenko/kube-lease-manager"
version = "0.1.6"
version = "0.2.0"
exclude = [
".github/**",
".vscode/**",
Expand All @@ -23,7 +23,7 @@ exclude = [

[dependencies]
k8s-openapi = { version = "0.22.0", default-features = false }
kube = { version = "0.92.1", default-features = false, features = ["client"] }
kube = { version = "0.93.1", default-features = false, features = ["client"] }
rand = { version = "0.8.5" }
thiserror = "1.0.61"
tokio = { version = "1.38.0", default-features = false, features = [
Expand All @@ -38,15 +38,15 @@ anyhow = "1.0.86"
futures = { version = "0.3.30", default-features = false, features = [
"async-await",
] }
kube = { version = "0.92.1", default-features = false, features = [
kube = { version = "0.93.1", default-features = false, features = [
"rustls-tls",
"runtime",
] }
tokio = { version = "1.38.0", default-features = false, features = [
"rt-multi-thread",
] }
tracing-subscriber = { version = "0.3.18" }
uuid = { version = "1.9.1", features = ["v4"] }
uuid = { version = "1.10.0", features = ["v4"] }

[package.metadata.docs.rs]
features = ["k8s-openapi/v1_26"]

0 comments on commit 19e3459

Please sign in to comment.