Skip to content

Commit

Permalink
upgrade(k8s-openapi): Updated k8s-openapi dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Kosiewski <[email protected]>
  • Loading branch information
ThomasK33 committed Feb 27, 2024
1 parent eaa67cd commit c59819b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 40 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ on:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "2 2 2 * *"

jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions-rs/audit-check@v1
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
28 changes: 0 additions & 28 deletions .github/workflows/automerge.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- run: cargo clippy --all-features
env:
RUSTFLAGS: "-Dwarnings"
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ categories = ["algorithms", "data-structures", "encoding"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
k8s-openapi = { version = "0.20.0", default-features = false }
k8s-openapi = { version = "0.21.1", default-features = false }
nom = "7.1.3"
rust_decimal = "1.32.0"
thiserror = "1.0.48"

[dev-dependencies]
k8s-openapi = { version = "0.20.0", default-features = false, features = [
"v1_28",
k8s-openapi = { version = "0.21.1", default-features = false, features = [
"v1_29",
] }

[features]
__check = ["k8s-openapi/v1_28"]
__check = ["k8s-openapi/v1_29"]

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

0 comments on commit c59819b

Please sign in to comment.