2020-07-04 23:21:39 +10:00
|
|
|
[package]
|
|
|
|
name = "ash-window"
|
2022-03-24 08:04:12 +11:00
|
|
|
version = "0.10.0"
|
2020-07-04 23:21:39 +10:00
|
|
|
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 = ".."
|
2022-03-28 08:30:10 +11:00
|
|
|
rust-version = "1.59.0"
|
2020-07-04 23:21:39 +10:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-24 08:04:12 +11:00
|
|
|
ash = { path = "../ash", version = "0.37", default-features = false }
|
2022-01-11 07:59:35 +11:00
|
|
|
raw-window-handle = "0.3.4"
|
2020-07-04 23:21:39 +10:00
|
|
|
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
|
|
raw-window-metal = "0.1"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
winit = "0.19.4"
|
2022-03-24 08:04:12 +11:00
|
|
|
ash = { path = "../ash", version = "0.37", default-features = false, features = ["linked"] }
|
2021-12-22 12:31:13 +11:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "winit"
|
|
|
|
required-features = ["ash/linked"]
|