[package] name = "vk-mem-erupt" version = "0.2.4" authors = ["Hindrik Stegenga ", "Graham Wihlidal "] description = "Rust ffi bindings and idiomatic wrapper for AMD Vulkan Memory Allocator (VMA) using erupt." homepage = "https://github.com/HindrikStegenga/vk-mem-rs" repository = "https://github.com/HindrikStegenga/vk-mem-rs" documentation = "https://docs.rs/vk-mem-erupt" readme = "README.md" keywords = ["vulkan", "vk", "erupt", "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/include/vk_mem_alloc.h", "wrapper/vulkan/vk_platform.h", "wrapper/vulkan/vulkan_core.h", "wrapper/vulkan/vulkan.h", "wrapper/vma_lib.cpp", ] edition = "2018" [badges] travis-ci = { repository = "gwihlidal/vk-mem-rs" } maintenance = { status = "actively-developed" } [dependencies] erupt = "0.20" bitflags = "1.2.1" failure = { version = "0.1.7", optional = true } [build-dependencies] cc = "1.0.50" [build-dependencies.bindgen] version = "0.53.2" optional = true [profile.release] lto = true opt-level = 3 codegen-units = 1 [features] default = [] generate_bindings=["bindgen"] link_vulkan=[] recording=[]