-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
41 lines (33 loc) · 1.25 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "crevice"
description = "Create GLSL-compatible versions of structs with explicitly-initialized padding"
version = "0.18.0"
rust-version = "1.74.0"
edition = "2021"
authors = ["Lucien Greathouse <[email protected]>"]
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"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std"]
std = []
test-all-math-libraries = ["cgmath", "glam", "glam/std", "nalgebra"]
[workspace]
members = [".", "crevice-derive", "crevice-tests"]
default-members = [".", "crevice-derive", "crevice-tests"]
[dependencies]
crevice-derive = { version = "0.18.0", path = "crevice-derive" }
bytemuck = "1.12.3"
mint = "0.5.9"
cgmath = { version = "0.18.0", default-features = false, optional = true }
glam = { version = "0.30", default-features = false, features = ["mint"], optional = true }
nalgebra = { version = "0.33", default-features = false, features = ["mint"], optional = true }
[dev-dependencies]
insta = "1.21.0"
[package.metadata."docs.rs"]
all-features = true