diff --git a/.mailmap b/.mailmap new file mode 100644 index 000000000..b68a3bdf2 --- /dev/null +++ b/.mailmap @@ -0,0 +1 @@ +Eirik A diff --git a/deny.toml b/deny.toml index 9437556ec..133c609e8 100644 --- a/deny.toml +++ b/deny.toml @@ -83,31 +83,10 @@ multiple-versions = "deny" name = "idna" version = "0.2" -# waiting on hyper-rustls and below to bump its chain -[[bans.skip]] -name = "windows_i686_msvc" -version = "0.36" -[[bans.skip]] -name = "windows_aarch64_msvc" -version = "0.36" +# tokio 1.25 pulls in mio which pulls in older an windows-sys than parking-lot [[bans.skip]] name = "windows-sys" -version = "0.36" -[[bans.skip]] -name = "windows_i686_gnu" -version = "0.36" -[[bans.skip]] -name = "windows_x86_64_msvc" -version = "0.36" -[[bans.skip]] -name = "windows_x86_64_gnu" -version = "0.36" - -[[bans.skip]] -# waiting for ahash/getrandom to bump wasi as we have two branches: -# ahash -> getrandom -> wasi old -# tokio -> mio -> wasi new -name = "wasi" +version = "0.42" [[bans.skip]] # waiting for pem to bump base64 diff --git a/justfile b/justfile index 463befa94..75ec929fa 100644 --- a/justfile +++ b/justfile @@ -1,7 +1,8 @@ VERSION := `git rev-parse HEAD` +[private] default: - @just --list --unsorted --color=always | rg -v " default" + @just --list --unsorted clippy: #rustup component add clippy --toolchain nightly @@ -15,6 +16,10 @@ fmt: doc: RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --lib --workspace --features=derive,ws,oauth,jsonpatch,client,derive,runtime,admission,k8s-openapi/v1_26 --open +deny: + # might require rm Cargo.lock first to match CI + cargo deny --workspace --all-features check bans licenses sources + # Unit tests test: cargo test --lib --all @@ -24,6 +29,7 @@ test: cargo test -p kube --lib --no-default-features --features=openssl-tls,ws,oauth cargo test -p kube --lib --no-default-features +# Integration tests (will modify your current context's cluster) test-integration: kubectl delete pod -lapp=kube-rs-test cargo test --lib --all -- --ignored # also run tests that fail on github actions @@ -36,10 +42,6 @@ coverage: cargo tarpaulin --out=Html --output-dir=. #xdg-open tarpaulin-report.html -deny: - # might require rm Cargo.lock first to match CI - cargo deny --workspace --all-features check bans licenses sources - readme: rustdoc README.md --test --edition=2021