mirror of
https://github.com/bevyengine/bevy
synced 2024-12-22 11:03:06 +00:00
7ce3ae43e3
# Objective - The [dev docs](https://dev-docs.bevyengine.org/bevy/index.html#) show version 0.6.0, which is actively misleading. [Image of the problem](https://cdn.discordapp.com/attachments/695741366520512563/953513612943704114/Screenshot_20220316-154100_Firefox-01.jpeg) Noticed by @ickk, fix proposed by @mockersf. ## Solution - Bump the version across all Bevy crates to 0.7.0 dev. - Set a reminder in the Release Checklist to remember to do this each release.
36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
name = "bevy_crevice"
|
|
description = "Create GLSL-compatible versions of structs with explicitly-initialized padding (Bevy version)"
|
|
version = "0.7.0-dev"
|
|
edition = "2021"
|
|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
|
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.7.0-dev", 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 = "0.16.1"
|