Skip to content

Commit

Permalink
Updated bindings and version to 0.1.3. Also implemented allocate_memo…
Browse files Browse the repository at this point in the history
…ry_pages and free_memory_pages
  • Loading branch information
gwihlidal committed Dec 14, 2018
1 parent 1a9a72d commit 2c612d4
Show file tree
Hide file tree
Showing 5 changed files with 2,727 additions and 2,459 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "vk-mem"
version = "0.1.2"
version = "0.1.3"
authors = ["Graham Wihlidal <graham@wihlidal.ca>"]
description = "Rust ffi bindings and idiomatic wrapper for AMD Vulkan Memory Allocator (VMA)"
homepage = "https://github.com/gwihlidal/vk-mem-rs"
Expand Down Expand Up @@ -34,7 +34,7 @@ bitflags = "1.0.4"
failure = "0.1.3"

[build-dependencies]
cc = { version = "1.0.25", features = ["parallel"] }
cc = { version = "1.0.26", features = ["parallel"] }

[build-dependencies.bindgen]
version = "0.44.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -133,7 +133,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
vk-mem = "0.1.2"
vk-mem = "0.1.3"
```

and add this to your crate root:
Expand Down
4 changes: 4 additions & 0 deletions build.rs
Expand Up @@ -41,6 +41,8 @@ fn main() {
.flag("-Wno-missing-field-initializers")
.flag("-Wno-unused-variable")
.flag("-Wno-unused-parameter")
.flag("-Wno-unused-private-field")
.flag("-Wno-reorder")
.cpp_link_stdlib("c++")
.cpp_set_stdlib("c++")
.cpp(true);
Expand All @@ -50,6 +52,8 @@ fn main() {
.flag("-Wno-missing-field-initializers")
.flag("-Wno-unused-variable")
.flag("-Wno-unused-parameter")
.flag("-Wno-unused-private-field")
.flag("-Wno-reorder")
.cpp_link_stdlib("stdc++")
.cpp(true);
}
Expand Down

0 comments on commit 2c612d4

Please sign in to comment.