mirror of
https://github.com/bevyengine/bevy
synced 2024-12-23 19:43:07 +00:00
2e99d84cdc
Now that we have main features, lets use them!
28 lines
795 B
TOML
28 lines
795 B
TOML
[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
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[dependencies]
|
|
crevice-derive = { version = "0.6.0", path = "crevice-derive" }
|
|
|
|
bytemuck = "1.4.1"
|
|
mint = "0.5.5"
|
|
glam = "0.15.1"
|
|
|
|
[dev-dependencies]
|
|
crevice-derive = { version = "0.6.0", path = "crevice-derive" }
|