mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 08:14:20 +00:00
Publish 0.10.0 (#1013)
This commit is contained in:
parent
ef8bbecc5e
commit
e21bd19bad
@ -1,4 +1,6 @@
|
|||||||
# Unreleased (major)
|
# Unreleased
|
||||||
|
|
||||||
|
# Version 0.10.0 (2018-08-10)
|
||||||
|
|
||||||
- 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.17.
|
- Updated winit to version 0.17.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-shader-derive"
|
name = "vulkano-shader-derive"
|
||||||
version = "0.9.0"
|
version = "0.10.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"
|
||||||
@ -15,7 +15,7 @@ proc-macro = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
glsl-to-spirv = { version = "0.1.6", path = "../glsl-to-spirv" }
|
glsl-to-spirv = { version = "0.1.6", path = "../glsl-to-spirv" }
|
||||||
syn = "0.14"
|
syn = "0.14"
|
||||||
vulkano-shaders = { version = "0.9", path = "../vulkano-shaders" }
|
vulkano-shaders = { version = "0.10", path = "../vulkano-shaders" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
vulkano = { version = "0.9", path = "../vulkano" }
|
vulkano = { version = "0.10", path = "../vulkano" }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-shaders"
|
name = "vulkano-shaders"
|
||||||
version = "0.9.0"
|
version = "0.10.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 = "Shaders "
|
description = "Shaders "
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-win"
|
name = "vulkano-win"
|
||||||
version = "0.9.0"
|
version = "0.10.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 = "Link between vulkano and winit"
|
description = "Link between vulkano and winit"
|
||||||
@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
|
|||||||
categories = ["rendering::graphics-api"]
|
categories = ["rendering::graphics-api"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
vulkano = { version = "0.9.0", path = "../vulkano" }
|
vulkano = { version = "0.10.0", path = "../vulkano" }
|
||||||
winit = "0.17"
|
winit = "0.17"
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano"
|
name = "vulkano"
|
||||||
version = "0.9.0"
|
version = "0.10.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.4"
|
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"
|
||||||
|
Loading…
Reference in New Issue
Block a user