Upgrade dependencies (#1012)

This commit is contained in:
Lucas Kent 2018-08-10 22:50:38 +10:00 committed by Pierre Krieger
parent ab59ca7461
commit 44e8207a27
6 changed files with 25 additions and 25 deletions

View File

@ -1,7 +1,7 @@
# Unreleased (major) # Unreleased (major)
- Use dynamically loaded `libvulkan` like on other platforms instead of linking to MoltenVK on macOS - Use dynamically loaded `libvulkan` like on other platforms instead of linking to MoltenVK on macOS
- Updated winit to version 0.16. - Updated winit to version 0.17.
- Allow custom implementations of `RenderPassDesc` to specify `VK_SUBPASS_EXTERNAL` as a dependency source or destination - Allow custom implementations of `RenderPassDesc` to specify `VK_SUBPASS_EXTERNAL` as a dependency source or destination
- Added `vulkano_win::create_vk_surface` which allows creating a surface safely without taking ownership of - Added `vulkano_win::create_vk_surface` which allows creating a surface safely without taking ownership of
the window. the window.

View File

@ -10,5 +10,5 @@ vulkano-shader-derive = { path = "../vulkano-shader-derive" }
vulkano-win = { path = "../vulkano-win" } vulkano-win = { path = "../vulkano-win" }
cgmath = "0.16.1" cgmath = "0.16.1"
image = "0.19.0" image = "0.19.0"
winit = "0.16.0" winit = "0.17"
time = "0.1.38" time = "0.1.38"

View File

@ -9,7 +9,7 @@ categories = ["rendering::graphics-api"]
[dependencies] [dependencies]
vulkano = { version = "0.9.0", path = "../vulkano" } vulkano = { version = "0.9.0", path = "../vulkano" }
winit = "0.16.0" winit = "0.17"
[target.'cfg(target_os = "macos")'.dependencies] [target.'cfg(target_os = "macos")'.dependencies]
metal-rs = "0.6" metal-rs = "0.6"

View File

@ -1,20 +1,20 @@
[package] [package]
name = "vulkano" name = "vulkano"
version = "0.9.0" version = "0.9.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"] authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano" repository = "https://github.com/vulkano-rs/vulkano"
description = "Safe wrapper for the Vulkan graphics API" description = "Safe wrapper for the Vulkan graphics API"
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
documentation = "https://docs.rs/vulkano" documentation = "https://docs.rs/vulkano"
readme = "../README.md" readme = "../README.md"
categories = ["rendering::graphics-api"] categories = ["rendering::graphics-api"]
build = "build.rs" build = "build.rs"
[dependencies] [dependencies]
crossbeam = "0.3.0" crossbeam = "0.4"
fnv = "1.0.6" fnv = "1.0.6"
shared_library = "0.1.7" shared_library = "0.1.7"
smallvec = "0.6.0" smallvec = "0.6.0"
lazy_static = "1" lazy_static = "1"
vk-sys = { version = "0.3.3", path = "../vk-sys" } vk-sys = { version = "0.3.3", path = "../vk-sys" }
half = "1" half = "1"

View File

@ -7,7 +7,7 @@
// notice may not be copied, modified, or distributed except // notice may not be copied, modified, or distributed except
// according to those terms. // according to those terms.
use crossbeam::sync::MsQueue; use crossbeam::queue::MsQueue;
use fnv::FnvHashMap; use fnv::FnvHashMap;
use std::collections::hash_map::Entry; use std::collections::hash_map::Entry;
use std::marker::PhantomData; use std::marker::PhantomData;

View File

@ -7,7 +7,7 @@
// notice may not be copied, modified, or distributed except // notice may not be copied, modified, or distributed except
// according to those terms. // according to those terms.
use crossbeam::sync::SegQueue; use crossbeam::queue::SegQueue;
use std::sync::Arc; use std::sync::Arc;
use OomError; use OomError;