Bug 1902540 - Crashtest. r=dholbert
[gecko.git] / third_party / rust / gpu-alloc / Cargo.toml
blob6021c6cbf274351f468db5142120250ba4d4f770
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g., crates.io) dependencies.
8 # If you are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
12 [package]
13 edition = "2018"
14 name = "gpu-alloc"
15 version = "0.6.0"
16 authors = ["Zakarum <zakarumych@ya.ru>"]
17 description = "Implementation agnostic memory allocator for Vulkan like APIs"
18 homepage = "https://github.com/zakarumych/gpu-alloc"
19 documentation = "https://docs.rs/gpu-alloc-types"
20 readme = "README.md"
21 keywords = [
22     "gpu",
23     "vulkan",
24     "allocation",
25     "no-std",
27 categories = [
28     "graphics",
29     "memory-management",
30     "no-std",
31     "game-development",
33 license = "MIT OR Apache-2.0"
34 repository = "https://github.com/zakarumych/gpu-alloc"
36 [dependencies.bitflags]
37 version = "2.0"
38 default-features = false
40 [dependencies.gpu-alloc-types]
41 version = "=0.3.0"
43 [dependencies.serde]
44 version = "1.0"
45 features = ["derive"]
46 optional = true
47 default-features = false
49 [dependencies.tracing]
50 version = "0.1.27"
51 features = ["attributes"]
52 optional = true
53 default-features = false
55 [features]
56 default = ["std"]
57 serde = [
58     "dep:serde",
59     "bitflags/serde",
61 std = []