-
Notifications
You must be signed in to change notification settings - Fork 69
/
Cargo.toml
49 lines (43 loc) · 1.27 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
[package]
name = "vk-mem"
version = "0.4.0"
authors = ["Graham Wihlidal <graham@wihlidal.ca>", "Zhixing Zhang <me@neoto.xin>"]
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",
"build.rs",
"Cargo.toml",
"vendor/VulkanMemoryAllocator/include/vk_mem_alloc.h",
"vendor/Vulkan-Headers/include",
"wrapper.cpp",
]
edition = "2021"
[badges]
travis-ci = { repository = "gwihlidal/vk-mem-rs" }
maintenance = { status = "actively-developed" }
[dependencies]
ash = { version = "0.38", default-features = false }
bitflags = "2.5"
[build-dependencies]
cc = "1.0"
[build-dependencies.bindgen]
version = "0.69"
optional = true
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
[features]
default = ["loaded"]
generate_bindings=["bindgen"]
linked=["ash/linked"]
loaded=["ash/loaded"]
recording=[]