forked from vulkano-rs/vulkano
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set MSRV to 1.72.0 (vulkano-rs#2516)
* Set MSRV to 1.72.0 * Use workspace inheritance for some package fields * Authors seem to differ, so don't inherit that * Consistency
- Loading branch information
Showing
7 changed files
with
43 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
[package] | ||
name = "vulkano-shaders" | ||
version = "0.34.0" | ||
edition = "2021" | ||
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"] | ||
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-shaders" | ||
homepage = "https://vulkano.rs" | ||
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"] | ||
categories = ["rendering::graphics-api"] | ||
readme = "../README.md" | ||
edition = { workspace = true } | ||
rust-version = { workspace = true } | ||
license = { workspace = true } | ||
homepage = { workspace = true } | ||
keywords = { workspace = true } | ||
categories = { workspace = true } | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
[package] | ||
name = "vulkano" | ||
version = "0.34.0" | ||
edition = "2021" | ||
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"] | ||
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" | ||
homepage = "https://vulkano.rs" | ||
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"] | ||
categories = ["rendering::graphics-api"] | ||
readme = "../README.md" | ||
build = "build.rs" | ||
edition = { workspace = true } | ||
rust-version = { workspace = true } | ||
license = { workspace = true } | ||
homepage = { workspace = true } | ||
keywords = { workspace = true } | ||
categories = { workspace = true } | ||
|
||
[dependencies] | ||
ahash = { workspace = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters