Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
VZout committed Oct 30, 2023
1 parent f5e7606 commit 69f1ba2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ash-window/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ edition = "2021"
rust-version = "1.64.0"

[dependencies]
ash = { path = "../ash", version = "0.37", default-features = false }
ash = { path = "../ash", version = "0.38", default-features = false }
raw-window-handle = "0.5"

[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
raw-window-metal = "0.3"

[dev-dependencies]
winit = "0.28.0"
ash = { path = "../ash", version = "0.37", default-features = false, features = ["linked"] }
ash = { path = "../ash", version = "0.38", default-features = false, features = ["linked"] }

[[example]]
name = "winit"
Expand Down
16 changes: 8 additions & 8 deletions ash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "ash"
version = "0.37.0+1.3.269"
version = "0.38.0+1.3.269"
authors = [
"Maik Klein <maikklein@googlemail.com>",
"Benjamin Saunders <ben.e.saunders@gmail.com>",
"Marijn Suijten <marijn@traverseresearch.nl>",
"Marijn Suijten <marijn@traverseresearch.nl>"
]
description = "Vulkan bindings for Rust"
license = "MIT OR Apache-2.0"
repository = "https://github.com/MaikKlein/ash"
readme = "../README.md"
keywords = ["vulkan", "graphic"]
keywords = [ "vulkan", "graphic" ]
documentation = "https://docs.rs/ash"
edition = "2021"
rust-version = "1.60.0"
Expand All @@ -19,17 +19,17 @@ rust-version = "1.60.0"
libloading = { version = "0.7", optional = true }

[features]
default = ["loaded", "debug"]
default = [ "loaded", "debug" ]
# Link the Vulkan loader at compile time.
linked = []
linked = [ ]
# Support searching for the Vulkan loader manually at runtime.
loaded = ["libloading"]
loaded = [ "libloading" ]
# Whether Vulkan structs should implement Debug.
debug = []
debug = [ ]

[package.metadata.release]
no-dev-version = true

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
rustdoc-args = [ "--cfg", "docsrs" ]

0 comments on commit 69f1ba2

Please sign in to comment.