aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig56
1 files changed, 41 insertions, 15 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 99c9a33..b83bb09 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,8 +1,11 @@
[package]
name = "vulkano"
-version = "0.25.0"
-edition = "2018"
-authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
+version = "0.33.0"
+edition = "2021"
+authors = [
+ "Pierre Krieger <pierre.krieger1708@gmail.com>",
+ "The vulkano contributors",
+]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Safe wrapper for the Vulkan graphics API"
license = "MIT/Apache-2.0"
@@ -14,19 +17,42 @@ readme = "../README.md"
build = "build.rs"
[dependencies]
+ahash = "0.8"
# When updating Ash, also update vk.xml to the same Vulkan patch version that Ash uses.
-# All versions of vk.xml can be found at https://github.com/KhronosGroup/Vulkan-Headers/commits/master/registry/vk.xml.
-ash = "0.33.0"
+# All versions of vk.xml can be found at https://github.com/KhronosGroup/Vulkan-Headers/commits/main/registry/vk.xml.
+ash = "^0.37.2"
+bytemuck = "1.9"
crossbeam-queue = "0.3"
-fnv = "1.0"
-half = "1.7"
-lazy_static = "1.4"
-parking_lot = { version = "0.11.1", features = ["send_guard"] }
-shared_library = "0.1"
-smallvec = "1.6"
+half = { version = "2", features = ["bytemuck"] }
+libloading = "0.7"
+once_cell = "1.17"
+parking_lot = { version = "0.12", features = ["send_guard"] }
+serde = { version = "1.0", optional = true }
+smallvec = "1.8"
+thread_local = "1.1"
+vulkano-macros = { path = "../vulkano-macros", version = "0.33.0", optional = true }
+
+[target.'cfg(target_os = "ios")'.dependencies]
+objc = "0.2.5"
+core-graphics-types = "0.1"
[build-dependencies]
-heck = "0.3"
-indexmap = "1.7"
-regex = "1.5"
-vk-parse = "0.6"
+ahash = "0.8"
+heck = "0.4"
+indexmap = "1.8"
+once_cell = "1.16"
+proc-macro2 = "1.0"
+quote = "1.0"
+regex = "1.0"
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+vk-parse = "0.8"
+
+[dev-dependencies]
+cgmath = "0.18"
+nalgebra = "0.32"
+
+[features]
+default = ["macros"]
+macros = ["vulkano-macros"]
+document_unchecked = []