aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig32
1 files changed, 32 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..99c9a33
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,32 @@
+[package]
+name = "vulkano"
+version = "0.25.0"
+edition = "2018"
+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"
+documentation = "https://docs.rs/vulkano"
+homepage = "https://vulkano.rs"
+keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
+categories = ["rendering::graphics-api"]
+readme = "../README.md"
+build = "build.rs"
+
+[dependencies]
+# 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"
+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"
+
+[build-dependencies]
+heck = "0.3"
+indexmap = "1.7"
+regex = "1.5"
+vk-parse = "0.6"