diff options
-rw-r--r-- | .github/workflows/verify.yml | 2 | ||||
-rw-r--r-- | wgpu/Cargo.toml | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 3de8a21c..089dd5c9 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -13,7 +13,7 @@ jobs: - name: Check `CHANGELOG.md` has changes run: | ! git diff --exit-code origin/master HEAD -- CHANGELOG.md - - name: Check `CHANGELOG.md` has PR author + - name: Check `CHANGELOG.md` thanks the PR author if: ${{ github.event.pull_request.user.login != 'hecrj' }} run: | sed -n '/## \[Unreleased\]/,/^## /p' CHANGELOG.md | sed -n '/Many thanks to.../,//p' | grep '@${{ github.event.pull_request.user.login }}' diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index a0500f83..3c08b569 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -15,13 +15,14 @@ web-colors = ["iced_graphics/web-colors"] [dependencies] wgpu = "0.16" +glyphon = "0.3" raw-window-handle = "0.5" -log = "0.4" guillotiere = "0.6" futures = "0.3" bitflags = "1.2" once_cell = "1.0" rustc-hash = "1.1" +log = "0.4" [target.'cfg(target_arch = "wasm32")'.dependencies] wgpu = { version = "0.16", features = ["webgl"] } @@ -42,11 +43,6 @@ features = ["derive"] version = "0.8" path = "../graphics" -[dependencies.glyphon] -version = "0.2" -git = "https://github.com/grovesNL/glyphon.git" -rev = "81dedbd04237e181c2118931c5f37d341aeb6837" - [dependencies.glam] version = "0.24" |