Skip to content

Commit

Permalink
Update just test and just build to use both rustc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
diehuxx committed Aug 21, 2024
1 parent 554a974 commit b6fc562
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ setup:

build: setup
cargo build --workspace
# Build web5 crate with lower rustc version than rest of the project
cd crates/web5 && cargo build

test: setup
cargo test --workspace
# Test web5 crate with lower rustc version than rest of the project
cd crates/web5 && cargo test

lint: setup
cargo clippy --workspace
Expand Down
1 change: 1 addition & 0 deletions crates/web5/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ pub mod rfc3339;
mod test_helpers;
#[cfg(test)]
mod test_vectors;

0 comments on commit b6fc562

Please sign in to comment.