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