diff --git a/Cargo.lock b/Cargo.lock index 68d9d585d..534e64dc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -320,8 +320,8 @@ name = "examples" version = "0.1.0" dependencies = [ "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", - "wgpu 0.1.0", - "wgpu-native 0.1.0", + "wgpu 0.2.0", + "wgpu-native 0.2.0", ] [[package]] @@ -498,7 +498,7 @@ dependencies = [ "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", "glsl-to-spirv 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "wgpu 0.1.0", + "wgpu 0.2.0", ] [[package]] @@ -1384,10 +1384,10 @@ dependencies = [ [[package]] name = "wgpu" -version = "0.1.0" +version = "0.2.0" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "wgpu-native 0.1.0", + "wgpu-native 0.2.0", ] [[package]] @@ -1399,7 +1399,7 @@ dependencies = [ [[package]] name = "wgpu-native" -version = "0.1.0" +version = "0.2.0" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1425,7 +1425,7 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "wgpu-native 0.1.0", + "wgpu-native 0.2.0", ] [[package]] diff --git a/wgpu-native/Cargo.toml b/wgpu-native/Cargo.toml index 916d806ee..ab06f10f1 100644 --- a/wgpu-native/Cargo.toml +++ b/wgpu-native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-native" -version = "0.1.0" +version = "0.2.0" authors = [ "Dzmitry Malyshau ", "Joshua Groves ", @@ -29,10 +29,10 @@ log = "0.4" parking_lot = { version = "0.7" } gfx-hal = "0.1.0" gfx-backend-empty = { version = "0.1.1" } -gfx-backend-vulkan = { version = "0.1.0", optional = true } -gfx-backend-dx11 = { version = "0.1.0", optional = true } -gfx-backend-dx12 = { version = "0.1.0", optional = true } -gfx-backend-metal = { version = "0.1.0", optional = true } +gfx-backend-vulkan = { version = "0.1", optional = true } +gfx-backend-dx11 = { version = "0.1", optional = true } +gfx-backend-dx12 = { version = "0.1", optional = true } +gfx-backend-metal = { version = "0.1", optional = true } #rendy-memory = { git = "https://github.com/rustgd/rendy", rev = "ce7dd7f", features = ["gfx-hal"] } serde = { version = "1.0", features = ["serde_derive"], optional = true } vec_map = "0.8" diff --git a/wgpu-rs/Cargo.toml b/wgpu-rs/Cargo.toml index b42dcd7e7..83a2ff8fe 100644 --- a/wgpu-rs/Cargo.toml +++ b/wgpu-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu" -version = "0.1.0" +version = "0.2.0" authors = [ "Dzmitry Malyshau ", "Joshua Groves ", @@ -23,5 +23,5 @@ dx12 = ["wgpu-native/gfx-backend-dx12"] vulkan = ["wgpu-native/gfx-backend-vulkan"] [dependencies] -wgpu-native = { version = "0.1", path = "../wgpu-native", features = ["local"] } +wgpu-native = { version = "0.2", path = "../wgpu-native", features = ["local"] } arrayvec = "0.4"