From 1964ae7922661a4b0180d4be8b8f485e8cd5fe02 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:54:11 +0100 Subject: [PATCH] Fix Cargo manifests (#2377) * Fix Cargo manifests * Oopsie --- vulkano-macros/Cargo.toml | 10 ++++++---- vulkano-shaders/Cargo.toml | 7 ++++--- vulkano-util/Cargo.toml | 7 ++++--- vulkano-win/Cargo.toml | 5 +++-- vulkano/Cargo.toml | 4 ++-- 5 files changed, 19 insertions(+), 14 deletions(-) diff --git a/vulkano-macros/Cargo.toml b/vulkano-macros/Cargo.toml index ac1759c5..1977f493 100644 --- a/vulkano-macros/Cargo.toml +++ b/vulkano-macros/Cargo.toml @@ -3,12 +3,14 @@ name = "vulkano-macros" version = "0.34.0" edition = "2021" authors = ["The vulkano contributors"] -repository = "https://github.com/vulkano-rs/vulkano" -description = "Macros used by Vulkano" +repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-macros" +description = "Macros used by vulkano" license = "MIT OR Apache-2.0" -documentation = "https://docs.rs/vulkano" +documentation = "https://docs.rs/vulkano-macros" homepage = "https://vulkano.rs" -publish = true +keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"] +categories = ["rendering::graphics-api"] +readme = "../README.md" [lib] proc-macro = true diff --git a/vulkano-shaders/Cargo.toml b/vulkano-shaders/Cargo.toml index 3aee74ce..670a9ac8 100644 --- a/vulkano-shaders/Cargo.toml +++ b/vulkano-shaders/Cargo.toml @@ -3,13 +3,14 @@ name = "vulkano-shaders" version = "0.34.0" edition = "2021" authors = ["Pierre Krieger ", "The vulkano contributors"] -repository = "https://github.com/vulkano-rs/vulkano" -description = "Shaders rust code generation macro" +repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-shaders" +description = "Macro for generating Rust code from shaders" license = "MIT OR Apache-2.0" -documentation = "https://docs.rs/vulkano" +documentation = "https://docs.rs/vulkano-shaders" homepage = "https://vulkano.rs" keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"] categories = ["rendering::graphics-api"] +readme = "../README.md" [lib] proc-macro = true diff --git a/vulkano-util/Cargo.toml b/vulkano-util/Cargo.toml index 5d94ba7a..98f03d25 100644 --- a/vulkano-util/Cargo.toml +++ b/vulkano-util/Cargo.toml @@ -3,13 +3,14 @@ name = "vulkano-util" version = "0.34.0" edition = "2021" authors = ["The vulkano contributors"] -repository = "https://github.com/vulkano-rs/vulkano" -description = "Utility functionality to make usage of Vulkano easier" +repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-util" +description = "Utility functionality to make usage of vulkano easier" license = "MIT OR Apache-2.0" -documentation = "https://docs.rs/vulkano" +documentation = "https://docs.rs/vulkano-util" homepage = "https://vulkano.rs" keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"] categories = ["rendering::graphics-api"] +readme = "../README.md" [dependencies] ahash = "0.8" diff --git a/vulkano-win/Cargo.toml b/vulkano-win/Cargo.toml index 05c0eb06..3de1dbf5 100644 --- a/vulkano-win/Cargo.toml +++ b/vulkano-win/Cargo.toml @@ -3,13 +3,14 @@ name = "vulkano-win" version = "0.34.0" edition = "2021" authors = ["Pierre Krieger ", "The vulkano contributors"] -repository = "https://github.com/vulkano-rs/vulkano" +repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-win" description = "Link between vulkano and winit" license = "MIT OR Apache-2.0" -documentation = "https://docs.rs/vulkano" +documentation = "https://docs.rs/vulkano-win" homepage = "https://vulkano.rs" keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"] categories = ["rendering::graphics-api"] +readme = "../README.md" [features] default = ["winit", "raw-window-handle"] diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index 1c9d72fe..4a58a5d8 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -3,7 +3,7 @@ name = "vulkano" version = "0.34.0" edition = "2021" authors = ["Pierre Krieger ", "The vulkano contributors"] -repository = "https://github.com/vulkano-rs/vulkano" +repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano" description = "Safe wrapper for the Vulkan graphics API" license = "MIT OR Apache-2.0" documentation = "https://docs.rs/vulkano" @@ -52,5 +52,5 @@ nalgebra = "0.32" [features] default = ["macros"] -macros = ["vulkano-macros"] +macros = ["dep:vulkano-macros"] document_unchecked = []