e43e9c0c9b
[#590] introduced an unsuspecting MSRV bump. While we're pro-ba-bly fine having these at the benefit of better code (in this case more appropriate `const` annotations), they should at least be clear to us when merging through a CI failure (or up-front bump of this version in the CI script). At the same time setting [`rust-version` in `Cargo.toml`] provides a more helpful "requires newer rustc" error message (since Rust 1.56.0) instead of showing potentially tons of irrelevant compile errors in this crate to the user. [#590]: https://github.com/MaikKlein/ash/pull/590 [`rust-version` in `Cargo.toml`]: https://doc.rust-lang.org/cargo/reference/manifest.html?highlight=pack#the-rust-version-field
31 lines
879 B
TOML
31 lines
879 B
TOML
[package]
|
|
name = "ash-window"
|
|
version = "0.10.0"
|
|
authors = ["msiglreith <m.siglreith@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Interop library between ash and raw-window-handle"
|
|
documentation = "https://docs.rs/ash-window"
|
|
repository = "https://github.com/MaikKlein/ash"
|
|
readme = "README.md"
|
|
keywords = ["window", "ash", "graphics"]
|
|
categories = ["game-engines", "graphics"]
|
|
exclude = [".github/*"]
|
|
workspace = ".."
|
|
rust-version = "1.59.0"
|
|
|
|
[dependencies]
|
|
ash = { path = "../ash", version = "0.37", default-features = false }
|
|
raw-window-handle = "0.3.4"
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
raw-window-metal = "0.1"
|
|
|
|
[dev-dependencies]
|
|
winit = "0.19.4"
|
|
ash = { path = "../ash", version = "0.37", default-features = false, features = ["linked"] }
|
|
|
|
[[example]]
|
|
name = "winit"
|
|
required-features = ["ash/linked"]
|