Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade winit to 0.30.2 #4849

Merged
merged 26 commits into from
Jul 31, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
00c282d
Initial conversion to winit 0.30
ArthurBrussee Jul 18, 2024
5294cae
Pin to 0.30.0 as 0.30.1+ has a bug that crashes on mac :/
ArthurBrussee Jul 18, 2024
3f42b72
Builder -> attributes
ArthurBrussee Jul 18, 2024
2e6c0d3
Add link to problematic winit PR
ArthurBrussee Jul 18, 2024
4f0e7d5
Update WinitApp integration to be more like ApplicationHandler
ArthurBrussee Jul 18, 2024
4623863
Fix for windows & linux
ArthurBrussee Jul 18, 2024
eafed08
Use more modern accesskit lazy init
ArthurBrussee Jul 18, 2024
e6741d2
Fixup comments
ArthurBrussee Jul 18, 2024
f37e52b
Update to latest accesskit and accesskit_winit
DataTriny Jul 19, 2024
fd3e552
Merge pull request #1 from DataTriny/fix-accesskit
ArthurBrussee Jul 19, 2024
cd894eb
Fixes for linux
ArthurBrussee Jul 19, 2024
d90b565
Merge remote-tracking branch 'origin/master' into winit-update
ArthurBrussee Jul 19, 2024
5e0f479
CI fixes
ArthurBrussee Jul 19, 2024
67c456b
Add a comment about wayland-cursor.
ArthurBrussee Jul 19, 2024
6d582f5
Fix crash when using winit 0.30.4
ArthurBrussee Jul 26, 2024
2f4dbaf
Enable nix/fs feature workaround in x11 too
ArthurBrussee Jul 26, 2024
af1c892
Remove leftover comment
ArthurBrussee Jul 26, 2024
c10e3fb
Managed to leave in some typos...
ArthurBrussee Jul 26, 2024
d9905d8
Merge branch 'master' into winit-update
emilk Jul 30, 2024
f10cf80
Fix request_repaint_after
ArthurBrussee Jul 30, 2024
1bbb312
Adress some review comments.
ArthurBrussee Jul 30, 2024
81fd86c
Pin winit, fix wayland dependency issues again.
ArthurBrussee Jul 30, 2024
e4fa5f9
Move `wayland-cursor` dependency to fix Windows build
emilk Jul 30, 2024
ba7cb00
fix typo
emilk Jul 30, 2024
48f402e
Remove duplicate dependency on `async-channel`
emilk Jul 30, 2024
8f337c7
ignore duplicated crate futures-lite
emilk Jul 30, 2024
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
Prev Previous commit
ignore duplicated crate futures-lite
  • Loading branch information
emilk committed Jul 30, 2024
commit 8f337c7c891782c0a7b8145b7f754df02f0ca221
3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ skip = [
{ name = "bit-vec" }, # dependency of bit-set in turn, different between 0.6 and 0.5
{ name = "bitflags" }, # old 1.0 version via glutin, png, spirv, …
{ name = "cfg_aliases" }, # old version via wgpu
{ name = "ndk-sys" }, # old version via wgpu, winit uses newer version
{ name = "event-listener" }, # TODO(emilk): rustls pulls in two versions of this 😭
{ name = "futures-lite" }, # old version via accesskit_unix and zbus
{ name = "memoffset" }, # tiny dependency
{ name = "ndk-sys" }, # old version via wgpu, winit uses newer version
{ name = "quick-xml" }, # old version via wayland-scanner
{ name = "redox_syscall" }, # old version via winit
{ name = "time" }, # old version pulled in by unmaintianed crate 'chrono'
Expand Down
Loading