Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6a4a940
[spr] initial version
sunshowers Jun 10, 2025
799459d
ui tests + better error handling
sunshowers Jun 11, 2025
b6f95ef
move to integration-tests
sunshowers Jun 11, 2025
d8cdaf4
even more tests
sunshowers Jun 11, 2025
d35f91e
rebase
sunshowers Jun 11, 2025
920026f
add support for a custom crate name
sunshowers Jun 11, 2025
818672e
more fixes
sunshowers Jun 11, 2025
28badef
more work
sunshowers Jun 12, 2025
0bca854
attrs
sunshowers Jun 12, 2025
e20fa8d
rebase on main
sunshowers Jun 12, 2025
0f19514
clippy
sunshowers Jun 12, 2025
d0b9859
fix json schema test
sunshowers Jun 12, 2025
70dfd40
rebase on main
sunshowers Jun 13, 2025
3e2be91
rebase
sunshowers Jun 14, 2025
666038d
new and improved
sunshowers Jun 14, 2025
7d0eaf5
clippy
sunshowers Jun 14, 2025
051a4d0
e2e example
sunshowers Jun 15, 2025
0106a1e
fix mermaid
sunshowers Jun 15, 2025
2375526
updates
sunshowers Jun 16, 2025
8826716
fix tests
sunshowers Jun 16, 2025
3d59681
fix
sunshowers Jun 16, 2025
3ab75a1
rebase on main
sunshowers Jun 18, 2025
89ad6eb
rebase on main + bump MSRV in CI
sunshowers Aug 14, 2025
a7f46d8
fixes
sunshowers Aug 14, 2025
c0f8b0e
better span attribution
sunshowers Aug 14, 2025
a09f54a
attribute the whole block
sunshowers Aug 14, 2025
0d53ada
use not: true rather than empty enum
sunshowers Aug 14, 2025
d6654d0
cleverer automatic replacement
sunshowers Aug 15, 2025
cb6a064
fix up issues
sunshowers Aug 15, 2025
592b938
expect -> allow
sunshowers Aug 15, 2025
c2c81c2
address review comments
sunshowers Aug 19, 2025
a184786
update tests
sunshowers Aug 19, 2025
5bbacb0
fix syntax
sunshowers Aug 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
# 1.67 is the MSRV
rust-version: ["1.67", stable]
# 1.79 is the MSRV
rust-version: ["1.79", stable]
fail-fast: false
env:
RUSTFLAGS: -D warnings
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Build
run: just powerset build --all-targets
- name: Test
run: just powerset nextest run --all-targets --no-tests=pass
run: just powerset nextest run --all-targets --no-tests=pass -E 'not (test(ui) or test(snapshot))'
- name: Run extended tests (only on stable)
if: matrix.rust-version == 'stable'
run: cargo nextest run --all-targets --all-features
Expand Down
Loading