130c150841
`raw-window-handle 0.3.4` was pushed as a "semver-trick-like" patch release, implementing the `0.3` trait for the `0.4` crate release [74]. This allows `ash-window` as a window-handle "consumer" crate to accept both `0.3` and `0.4` handles from consumer crates simultaneously. To ensure this patch release is available even when users omit regular `cargo update` or build with `-Z minimal-versions`, set the minimal patch version in `Cargo.toml` to it. [74]: https://github.com/rust-windowing/raw-window-handle/pull/74
30 lines
854 B
TOML
30 lines
854 B
TOML
[package]
|
|
name = "ash-window"
|
|
version = "0.9.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 = ".."
|
|
|
|
[dependencies]
|
|
ash = { path = "../ash", version = "0.35", 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.35", default-features = false, features = ["linked"] }
|
|
|
|
[[example]]
|
|
name = "winit"
|
|
required-features = ["ash/linked"]
|