bevy/crates/bevy_crevice/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

2021-04-11 20:13:07 +00:00
[package]
name = "bevy_crevice"
description = "Create GLSL-compatible versions of structs with explicitly-initialized padding (Bevy version)"
version = "0.5.0"
edition = "2021"
2021-04-11 20:13:07 +00:00
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
documentation = "https://docs.rs/crevice"
homepage = "https://github.com/LPGhatguy/crevice"
repository = "https://github.com/bevyengine/bevy"
2021-04-11 20:13:07 +00:00
readme = "README.md"
keywords = ["glsl", "std140", "std430"]
license = "MIT OR Apache-2.0"
# resolver = "2"
2021-04-11 20:13:07 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-06-02 02:59:17 +00:00
[features]
default = ["std"]
std = []
# [workspace]
# members = ["crevice-derive", "crevice-tests"]
# default-members = ["crevice-derive", "crevice-tests"]
2021-04-11 20:13:07 +00:00
[dependencies]
bevy-crevice-derive = { version = "0.5.0", path = "bevy-crevice-derive" }
2021-04-11 20:13:07 +00:00
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.29.0", features = ["mint"], optional = true }
2021-04-11 20:13:07 +00:00
[dev-dependencies]
insta = "0.16.1"