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
|
[package]
name = "gpu-descriptor"
version = "0.3.2"
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"
homepage = "https://github.com/zakarumych/gpu-descriptor"
repository = "https://github.com/zakarumych/gpu-descriptor"
readme = "../README.md"
[features]
std = []
default = ["std"]
[dependencies]
gpu-descriptor-types = { path = "../types", version = "0.2" }
tracing = { version = "0.1", optional = true, default-features = false }
bitflags = { version = "2.6", default-features = false }
serde = { version = "1.0", optional = true, default-features = false, features = [
"derive",
] }
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher"] }
|