Skip to content

Commit

Permalink
Merge pull request #146 from hapsoc/rustls-0.23
Browse files Browse the repository at this point in the history
feat!: Upgrade to rustls 0.23, tokio-rustls unreleased (tbd)
  • Loading branch information
fasterthanlime authored Mar 11, 2024
2 parents ca01a8f + 53e2a94 commit 0b62504
Show file tree
Hide file tree
Showing 4 changed files with 351 additions and 29 deletions.
16 changes: 15 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,24 @@ bench *args:
RUST_BACKTRACE=1 cargo bench {{args}} -- --plotting-backend plotters

h2spec *args:
#!/bin/bash -eux
#!/bin/bash -eux
export RUST_LOG="${RUST_LOG:-fluke=debug,fluke_hpack=info}"
export RUST_BACKTRACE=1
cargo run --manifest-path test-crates/fluke-h2spec/Cargo.toml -- {{args}}

check:
cargo clippy --all-targets --all-features

check-all:
#!/bin/bash -eux
cargo clippy --all-targets --all-features
# also for all subfolders of `test-crates/`
for d in test-crates/*; do
# if the Cargo.toml exists
if [ -f "$d/Cargo.toml" ]; then
pushd "$d" > /dev/null
cargo clippy --all-targets --all-features
popd > /dev/null
fi
done

Loading

0 comments on commit 0b62504

Please sign in to comment.