Skip to content

Commit

Permalink
Removed max ash version from dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwihlidal committed Apr 29, 2019
1 parent f58678a commit 2b63c88
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 0.1.7 (2019-04-29)

* Removed max ash version from dependencies.

## 0.1.6 (2019-03-25)

* Fixed AllocationCreateInfo Default implementation.
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vk-mem"
version = "0.1.6"
version = "0.1.7"
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 @@ -29,15 +29,15 @@ travis-ci = { repository = "gwihlidal/vk-mem-rs" }
maintenance = { status = "actively-developed" }

[dependencies]
ash = ">= 0.27.1, <= 0.28.0"
ash = ">= 0.27.1"
bitflags = "1.0.4"
failure = "0.1.5"

[build-dependencies]
cc = { version = "1.0.31", features = ["parallel"] }
cc = { version = "1.0.35", features = ["parallel"] }

[build-dependencies.bindgen]
version = "0.48.1"
version = "0.49.0"
optional = true

[profile.release]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ With this one function call (`vk_mem::Allocator::create_buffer`):
For MoltenVK on macOS, you need to have the proper environment variables set. Something like:

```bash
export SDK_PATH=/path/to/vulkansdk-macos-1.1.101.0
export SDK_PATH=/path/to/vulkansdk-macos-1.1.106.0
export DYLD_LIBRARY_PATH=$SDK_PATH/macOS/lib
export VK_ICD_FILENAMES=$SDK_PATH/macOS/etc/vulkan/icd.d/MoltenVK_icd.json
export VK_LAYER_PATH=$SDK_PATH/macOS/etc/vulkan/explicit_layer.d
Expand All @@ -137,7 +137,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
vk-mem = "0.1.6"
vk-mem = "0.1.7"
```

and add this to your crate root:
Expand Down

0 comments on commit 2b63c88

Please sign in to comment.