blob: d057e0de679f9286db638592802439257fc2eee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "gpu-descriptor"
version = "0.1.0"
authors = ["Zakarum <zakarumych@ya.ru>"]
edition = "2018"
description = "Implementation agnostic descriptor allocator for Vulkan like APIs"
keywords = ["gpu", "vulkan", "no-std"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/gpu-descriptor-types/0.1.0"
homepage = "https://github.com/zakarumych/gpu-descriptor"
repository = "https://github.com/zakarumych/gpu-descriptor"
[features]
std = []
default = ["std"]
[dependencies]
gpu-descriptor-types = { path = "../types", version = "0.1" }
tracing = { version = "0.1", optional = true, default-features = false }
bitflags = { version = "1.2", default-features = false }
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }
hashbrown = { version = "0.9" }
|