diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d09542..5f88b58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: rust: - stable - beta - - 1.51.0 + - 1.52.0 steps: - name: Checkout sources uses: actions/checkout@v2 @@ -40,7 +40,7 @@ jobs: rust: - stable - beta - - 1.51.0 + - 1.52.0 steps: - name: Checkout sources uses: actions/checkout@v2 diff --git a/MSRV.md b/MSRV.md index 1181154..2526273 100644 --- a/MSRV.md +++ b/MSRV.md @@ -2,7 +2,7 @@ | `pixels` version | `rustc` version | |------------------|-----------------| -| `0.4.0` | `1.51.0` | +| `0.4.0` | `1.52.0` | | `0.3.0` | `1.51.0` | | `0.2.0` | `1.41.0` | | `0.1.0` | `1.41.0` | diff --git a/examples/egui-winit/Cargo.toml b/examples/egui-winit/Cargo.toml index 38c0b69..4e61c3a 100644 --- a/examples/egui-winit/Cargo.toml +++ b/examples/egui-winit/Cargo.toml @@ -10,9 +10,9 @@ optimize = ["log/release_max_level_warn"] default = ["optimize"] [dependencies] -egui = "0.11" -egui_wgpu_backend = "0.7" -egui_winit_platform = "0.6" +egui = "0.12" +egui_wgpu_backend = "0.8" +egui_winit_platform = "0.7" env_logger = "0.8" log = "0.4" pixels = { path = "../.." }