From 71fcd32ae6ec3e0f284ecc30b76ee8382b954732 Mon Sep 17 00:00:00 2001 From: Jay Oster Date: Wed, 1 Dec 2021 08:50:52 -0800 Subject: [PATCH] Update MSRV --- .github/workflows/ci.yml | 4 ++-- Cargo.toml | 2 +- MSRV.md | 1 + examples/conway/Cargo.toml | 3 +-- examples/custom-shader/Cargo.toml | 3 +-- examples/imgui-winit/Cargo.toml | 3 +-- examples/invaders/Cargo.toml | 3 +-- examples/minimal-egui/Cargo.toml | 3 +-- examples/minimal-fltk/Cargo.toml | 3 +-- examples/minimal-sdl2/Cargo.toml | 3 +-- examples/minimal-web/Cargo.toml | 3 +-- examples/minimal-winit/Cargo.toml | 3 +-- examples/raqote-winit/Cargo.toml | 3 +-- internals/pixels-mocks/Cargo.toml | 2 +- 14 files changed, 15 insertions(+), 24 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 797c7b86..d57103cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: rust: - stable - beta - - 1.52.0 + - 1.56.0 steps: - name: Checkout sources uses: actions/checkout@v2 @@ -73,7 +73,7 @@ jobs: rust: - stable - beta - - 1.52.0 + - 1.56.0 steps: - name: Checkout sources uses: actions/checkout@v2 diff --git a/Cargo.toml b/Cargo.toml index 1bd2a48c..d9596fff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "pixels" description = "A tiny library providing a GPU-powered pixel frame buffer." version = "0.8.0" authors = ["Jay Oster "] -edition = "2018" +edition = "2021" repository = "https://github.com/parasyte/pixels" readme = "README.md" keywords = ["pixels", "2D", "GPU", "framebuffer"] diff --git a/MSRV.md b/MSRV.md index 45d1261a..07e0f820 100644 --- a/MSRV.md +++ b/MSRV.md @@ -2,6 +2,7 @@ | `pixels` version | `rustc` version | |------------------|-----------------| +| `0.9.0` | `1.56.0` | | `0.8.0` | `1.52.0` | | `0.7.0` | `1.52.0` | | `0.6.0` | `1.52.0` | diff --git a/examples/conway/Cargo.toml b/examples/conway/Cargo.toml index 65f4402e..b348c08c 100644 --- a/examples/conway/Cargo.toml +++ b/examples/conway/Cargo.toml @@ -2,8 +2,7 @@ name = "conway" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/custom-shader/Cargo.toml b/examples/custom-shader/Cargo.toml index 0dd84606..880b5444 100644 --- a/examples/custom-shader/Cargo.toml +++ b/examples/custom-shader/Cargo.toml @@ -2,8 +2,7 @@ name = "custom-shader" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/imgui-winit/Cargo.toml b/examples/imgui-winit/Cargo.toml index 8de5809e..f4724342 100644 --- a/examples/imgui-winit/Cargo.toml +++ b/examples/imgui-winit/Cargo.toml @@ -2,8 +2,7 @@ name = "imgui-winit" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/invaders/Cargo.toml b/examples/invaders/Cargo.toml index 1efdf957..c8e3d0d9 100644 --- a/examples/invaders/Cargo.toml +++ b/examples/invaders/Cargo.toml @@ -2,8 +2,7 @@ name = "invaders" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/minimal-egui/Cargo.toml b/examples/minimal-egui/Cargo.toml index 0bd58c8b..e464a1af 100644 --- a/examples/minimal-egui/Cargo.toml +++ b/examples/minimal-egui/Cargo.toml @@ -2,8 +2,7 @@ name = "minimal-egui" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/minimal-fltk/Cargo.toml b/examples/minimal-fltk/Cargo.toml index 5e617f18..ecef9b5c 100644 --- a/examples/minimal-fltk/Cargo.toml +++ b/examples/minimal-fltk/Cargo.toml @@ -2,8 +2,7 @@ name = "minimal-fltk" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/minimal-sdl2/Cargo.toml b/examples/minimal-sdl2/Cargo.toml index c5505d4b..42dfa2f6 100644 --- a/examples/minimal-sdl2/Cargo.toml +++ b/examples/minimal-sdl2/Cargo.toml @@ -2,8 +2,7 @@ name = "minimal-sdl2" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/minimal-web/Cargo.toml b/examples/minimal-web/Cargo.toml index 8afbcb5c..e64240a4 100644 --- a/examples/minimal-web/Cargo.toml +++ b/examples/minimal-web/Cargo.toml @@ -2,8 +2,7 @@ name = "minimal-web" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/minimal-winit/Cargo.toml b/examples/minimal-winit/Cargo.toml index a4d960c4..8d2b6ce1 100644 --- a/examples/minimal-winit/Cargo.toml +++ b/examples/minimal-winit/Cargo.toml @@ -2,8 +2,7 @@ name = "minimal-winit" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/examples/raqote-winit/Cargo.toml b/examples/raqote-winit/Cargo.toml index d31e99c0..f1b66f74 100644 --- a/examples/raqote-winit/Cargo.toml +++ b/examples/raqote-winit/Cargo.toml @@ -2,8 +2,7 @@ name = "raqote-winit" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" -resolver = "2" +edition = "2021" publish = false [features] diff --git a/internals/pixels-mocks/Cargo.toml b/internals/pixels-mocks/Cargo.toml index 70bd4219..8ca06692 100644 --- a/internals/pixels-mocks/Cargo.toml +++ b/internals/pixels-mocks/Cargo.toml @@ -2,7 +2,7 @@ name = "pixels-mocks" version = "0.1.0" authors = ["Jay Oster "] -edition = "2018" +edition = "2021" publish = false [dependencies]