forked from gwihlidal/vk-mem-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
[package]
name = "vk-mem"
version = "0.2.3"
authors = ["Graham Wihlidal <[email protected]>"]
description = "Rust ffi bindings and idiomatic wrapper for AMD Vulkan Memory Allocator (VMA)"
homepage = "https://github.com/gwihlidal/vk-mem-rs"
repository = "https://github.com/gwihlidal/vk-mem-rs"
documentation = "https://docs.rs/vk-mem"
readme = "README.md"
keywords = ["vulkan", "vk", "ash", "memory", "allocator"]
categories = ["api-bindings", "rendering", "rendering::engine", "rendering::graphics-api", ]
license = "MIT/Apache-2.0"
build = "build.rs"
include = [
"src/*.rs",
"gen/bindings.rs",
"build.rs",
"Cargo.toml",
"vendor/VulkanMemoryAllocator/include/vk_mem_alloc.h",
"vendor/Vulkan-Headers/include/vk_platform.h",
"vendor/Vulkan-Headers/include/vulkan_core.h",
"vendor/Vulkan-Headers/include/vulkan.h",
"wrapper/vma_lib.cpp",
]
edition = "2018"
[badges]
travis-ci = { repository = "gwihlidal/vk-mem-rs" }
maintenance = { status = "actively-developed" }
[dependencies]
ash = { git = "https://github.com/projectkml/ash" }
bitflags = "1.2.1"
[build-dependencies]
cc = "1.0.50"
[build-dependencies.bindgen]
version = "0.59.1"
optional = true
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
[features]
default = []
generate_bindings=["bindgen"]
link_vulkan=[]
recording=[]