mirror of
https://github.com/bevyengine/bevy
synced 2024-12-23 19:43:07 +00:00
290b7dd9ab
# Objective - Update vendor crevice to have the latest update from crevice 0.8.0 - Using https://github.com/ElectronicRU/crevice/tree/arrays which has the changes to make arrays work ## Solution - Also updated glam and hexasphere to only have one version of glam - From the original PR, using crevice to write GLSL code containing arrays would probably not work but it's not something used by Bevy
26 lines
661 B
TOML
26 lines
661 B
TOML
[package]
|
|
name = "crevice-derive"
|
|
description = "Derive crate for the 'crevice' crate"
|
|
version = "0.8.0"
|
|
edition = "2018"
|
|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
|
documentation = "https://docs.rs/crevice-derive"
|
|
homepage = "https://github.com/LPGhatguy/crevice"
|
|
repository = "https://github.com/LPGhatguy/crevice"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Enable methods that let you introspect into the generated structs.
|
|
debug-methods = []
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
syn = "1.0.40"
|
|
quote = "1.0.7"
|
|
proc-macro2 = "1.0.21"
|