Skip to content

Instantly share code, notes, and snippets.

@goddessfreya
Created November 21, 2018 00:39
Show Gist options
  • Save goddessfreya/e3abbfe8186f7752bf451275af53256c to your computer and use it in GitHub Desktop.
Save goddessfreya/e3abbfe8186f7752bf451275af53256c to your computer and use it in GitHub Desktop.
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index ff03e16a7..59601814c 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -28,7 +28,7 @@ path = "compute/main.rs"
env_logger = "0.5"
image = "0.19"
log = "0.4"
-winit = "0.17"
+winit = "0.18"
glsl-to-spirv = "0.1.4"
gfx-hal = { path = "../src/hal", version = "0.1" }
gfx-backend-empty = { path = "../src/backend/empty", version = "0.1" }
diff --git a/src/backend/dx11/Cargo.toml b/src/backend/dx11/Cargo.toml
index 417aa74cb..5d7514c7f 100644
--- a/src/backend/dx11/Cargo.toml
+++ b/src/backend/dx11/Cargo.toml
@@ -26,5 +26,5 @@ smallvec = "0.6"
spirv_cross = "0.11.2"
parking_lot = "0.6.3"
winapi = { version = "0.3", features = ["basetsd","d3d11", "d3d11sdklayers", "d3dcommon","d3dcompiler","dxgi1_2","dxgi1_3","dxgi1_4", "dxgi1_5", "dxgiformat","dxgitype","handleapi","minwindef","synchapi","unknwnbase","winbase","windef","winerror","winnt","winuser"] }
-winit = { version = "0.17", optional = true }
+winit = { version = "0.18", optional = true }
wio = "0.2"
diff --git a/src/backend/dx12/Cargo.toml b/src/backend/dx12/Cargo.toml
index d64773e44..4934d14c0 100644
--- a/src/backend/dx12/Cargo.toml
+++ b/src/backend/dx12/Cargo.toml
@@ -26,4 +26,4 @@ log = { version = "0.4", features = ["release_max_level_error"] }
smallvec = "0.6"
spirv_cross = "0.11.2"
winapi = { version = "0.3", features = ["basetsd","d3d12","d3d12sdklayers","d3d12shader","d3dcommon","d3dcompiler","dxgi1_2","dxgi1_3","dxgi1_4","dxgiformat","dxgitype","handleapi","minwindef","synchapi","unknwnbase","winbase","windef","winerror","winnt","winuser"] }
-winit = { version = "0.17", optional = true }
+winit = { version = "0.18", optional = true }
diff --git a/src/backend/gl/Cargo.toml b/src/backend/gl/Cargo.toml
index 587f3da5c..40408cc61 100644
--- a/src/backend/gl/Cargo.toml
+++ b/src/backend/gl/Cargo.toml
@@ -23,5 +23,5 @@ log = { version = "0.4", features = ["release_max_level_error"] }
gfx_gl = "0.5"
gfx-hal = { path = "../../hal", version = "0.1" }
smallvec = "0.6"
-glutin = { version = "0.18", optional = true }
+glutin = { version = "0.19", optional = true }
spirv_cross = "0.11.2"
diff --git a/src/backend/metal/Cargo.toml b/src/backend/metal/Cargo.toml
index 29982bffd..9c0f3e05d 100644
--- a/src/backend/metal/Cargo.toml
+++ b/src/backend/metal/Cargo.toml
@@ -22,7 +22,7 @@ name = "gfx_backend_metal"
gfx-hal = { path = "../../hal", version = "0.1" }
bitflags = "1.0"
log = { version = "0.4", features = ["release_max_level_error"] }
-winit = { version = "0.17", optional = true }
+winit = { version = "0.18", optional = true }
dispatch = { version = "0.1", optional = true }
metal = { version = "0.13.0", features = ["private"] }
foreign-types = "0.3"
diff --git a/src/backend/vulkan/Cargo.toml b/src/backend/vulkan/Cargo.toml
index 06c74c58a..260b86a38 100644
--- a/src/backend/vulkan/Cargo.toml
+++ b/src/backend/vulkan/Cargo.toml
@@ -26,7 +26,7 @@ shared_library = { version = "0.1.9", optional = true }
ash = "0.24.4"
gfx-hal = { path = "../../hal", version = "0.1" }
smallvec = "0.6"
-winit = { version = "0.17", optional = true }
+winit = { version = "0.18", optional = true }
glsl-to-spirv = { version = "0.1", optional = true }
[target.'cfg(windows)'.dependencies]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment