Skip to content

Commit

Permalink
Merge pull request #11 from Nopey/upd-and-opt-vulkano
Browse files Browse the repository at this point in the history
Updated winit, feature-gated vulkano
  • Loading branch information
bvssvni authored May 18, 2019
2 parents 066758a + 6794cc9 commit 8cad5f7
Show file tree
Hide file tree
Showing 2 changed files with 152 additions and 75 deletions.
22 changes: 16 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pistoncore-winit_window"
version = "0.10.0"
version = "0.11.0"
authors = ["Layl <[email protected]>"]
keywords = ["winit", "window", "piston"]
description = "A winit back-end for pistoncore-window"
Expand All @@ -9,13 +9,23 @@ readme = "README.md"
repository = "https://github.com/pistondevelopers/winit_window.git"
homepage = "https://github.com/pistondevelopers/winit_window"

[features]
default = ["use-vulkano"]
use-vulkano = ["vulkano", "vulkano-win"]

[lib]
name = "winit_window"
path = "src/lib.rs"

[dependencies]
winit = "0.7.6"
vulkano = "0.7"
vulkano-win = "0.7"
pistoncore-input = "0.22.0"
pistoncore-window = "0.33.0"
winit = "0.18"
pistoncore-input = "0.24"
pistoncore-window = "0.37"

[dependencies.vulkano]
version = "0.11"
optional = true

[dependencies.vulkano-win]
version = "0.11"
optional = true
Loading

0 comments on commit 8cad5f7

Please sign in to comment.