From 23709fb0117b569a8c7e35b36b929938361f1dba Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Fri, 26 Oct 2018 13:49:36 +1100 Subject: [PATCH] Remove vulkano-shader-derive (#1085) --- Cargo.toml | 1 - README.md | 7 +------ vulkano-shader-derive/Cargo.toml | 9 --------- vulkano-shader-derive/src/lib.rs | 0 4 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 vulkano-shader-derive/Cargo.toml delete mode 100644 vulkano-shader-derive/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index f3b40d95..02bc7784 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,6 @@ members = [ "vk-sys", "vulkano", "vulkano-shaders", - "vulkano-shader-derive", "vulkano-win" ] diff --git a/README.md b/README.md index 3288062c..747981b9 100644 --- a/README.md +++ b/README.md @@ -150,16 +150,11 @@ If your change adds, removes or modifies a trait or a function, please add an en This repository contains six libraries: - `vulkano` is the main one. -- `vulkano-shaders` can analyse SPIR-V shaders at compile-time. -- `vulkano-shader-derive` provides a custom derive that invokes `vulkano-shaders`. It lets you - easily integrate your GLSL shaders within the rest of your source code. +- `vulkano-shaders` Provides the `vulkano_shader!` macro for compiling glsl shaders. - `vulkano-win` provides a safe link between vulkano and the `winit` library which can create a window to render to. - `vk-sys` contains raw bindings for Vulkan. You can use it even if you don't care about vulkano. -Once procedural macros are stabilized in Rust, the `vulkano-shaders` and `vulkano-shader-derive` -crates will be merged with the `vulkano` crate. - In order to run tests, run `cargo test --all` at the root of the repository. Make sure your Vulkan driver is up to date before doing so. diff --git a/vulkano-shader-derive/Cargo.toml b/vulkano-shader-derive/Cargo.toml deleted file mode 100644 index b887561d..00000000 --- a/vulkano-shader-derive/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "vulkano-shader-derive" -version = "0.11.0" -authors = ["Pierre Krieger ", "The vulkano contributors"] -repository = "https://github.com/vulkano-rs/vulkano" -description = "Deprecated" -license = "MIT/Apache-2.0" -documentation = "https://docs.rs/vulkano" -categories = [] diff --git a/vulkano-shader-derive/src/lib.rs b/vulkano-shader-derive/src/lib.rs deleted file mode 100644 index e69de29b..00000000