Skip to content

Commit

Permalink
m: More CI fixes
Browse files Browse the repository at this point in the history
- Remove exr from pinned deps
- Fix macro positioning

Signed-off-by: John Nunley <[email protected]>
  • Loading branch information
notgull committed Jun 22, 2024
1 parent bafb07a commit 9044fdc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
components: rustfmt
- name: Check Formatting
run: cargo +stable fmt --all -- --check
- uses: taiki-e/install-action@v2
- uses: taiki-e/install-action@v2
with:
tool: typos-cli
- name: Check Formatting
Expand Down Expand Up @@ -88,10 +88,9 @@ jobs:
- name: Pin deps that break MSRV
if: matrix.rust_version == '1.70.0'
run: |
cargo update -p exr --precise 1.71.0
cargo update -p ahash --precise 0.8.7
cargo update -p bumpalo --precise 3.14.0
- name: Build crate
shell: bash
run: cargo $CMD build --verbose --target ${{ matrix.platform.target }} $OPTIONS --features $FEATURES
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ use winit::event::{Event, WindowEvent};
use winit::event_loop::{ControlFlow, EventLoop};
use winit::window::Window;
include!("../examples/utils/winit_app.rs");
include! {
"../examples/utils/winit_app.rs"
}
let event_loop = EventLoop::new().unwrap();
Expand Down

0 comments on commit 9044fdc

Please sign in to comment.