From c96d98bf5fa0d84812b76f297f62d605ab32c088 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Feb 2022 16:46:48 +0000 Subject: [PATCH] Update insta requirement from 0.16.1 to 1.12.0 Updates the requirements on [insta](https://github.com/mitsuhiko/insta) to permit the latest version. - [Release notes](https://github.com/mitsuhiko/insta/releases) - [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md) - [Commits](https://github.com/mitsuhiko/insta/commits) --- updated-dependencies: - dependency-name: insta dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_crevice/Cargo.toml | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 crates/bevy_crevice/Cargo.toml diff --git a/crates/bevy_crevice/Cargo.toml b/crates/bevy_crevice/Cargo.toml new file mode 100644 index 0000000000000..cfa8b958a077f --- /dev/null +++ b/crates/bevy_crevice/Cargo.toml @@ -0,0 +1,36 @@ +[package] +name = "bevy_crevice" +description = "Create GLSL-compatible versions of structs with explicitly-initialized padding (Bevy version)" +version = "0.6.0" +edition = "2021" +authors = ["Lucien Greathouse "] +documentation = "https://docs.rs/crevice" +homepage = "https://github.com/LPGhatguy/crevice" +repository = "https://github.com/bevyengine/bevy" +readme = "README.md" +keywords = ["glsl", "std140", "std430"] +license = "MIT OR Apache-2.0" +# resolver = "2" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[features] +default = ["std"] +std = [] + +# [workspace] +# members = ["crevice-derive", "crevice-tests"] +# default-members = ["crevice-derive", "crevice-tests"] + +[dependencies] +bevy-crevice-derive = { version = "0.6.0", path = "bevy-crevice-derive" } + +bytemuck = "1.4.1" +mint = "0.5.8" + +cgmath = { version = "0.18.0", optional = true } +glam = { version = "0.20.0", features = ["mint"], optional = true } +nalgebra = { version = "0.30.0", features = ["mint"], optional = true } + +[dev-dependencies] +insta = "1.12.0"