From ecc6db2a6e830174f4dea77a9d4f765ce4553113 Mon Sep 17 00:00:00 2001 From: Jonathan Cornaz Date: Sun, 8 Jan 2023 15:48:03 +0100 Subject: [PATCH] docs: lower the minimum supported rust version (msrv) to 1.56 --- Cargo.toml | 2 +- README.md | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a4d3fdd..8254f71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "1.1.2" license = "Unlicense" authors = ["Jonathan Cornaz"] edition = "2021" -rust-version = "1.58" +rust-version = "1.56" description = "A bounding-volume hierarchy for in-game broad-phase collision detection" repository = "/~https://github.com/jcornaz/bvh-arena" keywords = ["bvh", "sah", "bounding", "volume", "aabb"] diff --git a/README.md b/README.md index 99e4565..f1db0e1 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ # bvh-arena - -[![License](https://img.shields.io/github/license/jcornaz/bvh-arena)](/~https://github.com/jcornaz/bvh-arena/blob/main/UNLICENSE) +[![License](https://img.shields.io/crates/l/bvh-arena)](#Unlicense) [![Crates.io](https://img.shields.io/crates/v/bvh-arena)](https://crates.io/crates/bvh-arena) -[![Docs](https://img.shields.io/docsrs/bvh-arena)](https://docs.rs/bvh-arena) - +![rustc](https://img.shields.io/badge/rustc-1.56+-blue?logo=rust) +[![Docs](https://docs.rs/bvh-arena/badge.svg)](https://docs.rs/bvh-arena) A bounding-volume hierarchy for in-game broad-phase *collision detection* in rust @@ -57,7 +56,7 @@ bvh-arena = "1" ## MSRV -The minimum supported rust version is currently: `1.58` +The minimum supported rust version is currently: `1.56` **It *may* be increased to a newer stable version in a minor release.** (but only if needed)