bevy/crates/crevice/Cargo.toml

29 lines
795 B
TOML
Raw Normal View History

2021-04-11 20:13:07 +00:00
[package]
name = "crevice"
description = "Create GLSL-compatible versions of structs with explicitly-initialized padding"
version = "0.6.0"
edition = "2018"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
documentation = "https://docs.rs/crevice"
homepage = "https://github.com/LPGhatguy/crevice"
repository = "https://github.com/LPGhatguy/crevice"
readme = "README.md"
keywords = ["glsl", "std140", "std430"]
license = "MIT OR Apache-2.0"
# 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 = []
2021-04-11 20:13:07 +00:00
[dependencies]
2021-06-02 02:59:17 +00:00
crevice-derive = { version = "0.6.0", path = "crevice-derive" }
2021-04-11 20:13:07 +00:00
bytemuck = "1.4.1"
2021-06-02 02:59:17 +00:00
mint = "0.5.5"
2021-04-11 20:13:07 +00:00
glam = "0.15.1"
[dev-dependencies]
2021-06-02 02:59:17 +00:00
crevice-derive = { version = "0.6.0", path = "crevice-derive" }