2020-07-04 23:21:39 +10:00
|
|
|
[package]
|
|
|
|
name = "ash-window"
|
2023-02-25 08:01:58 +11:00
|
|
|
version = "0.12.0"
|
2023-11-18 02:55:05 +11:00
|
|
|
authors = [
|
|
|
|
"msiglreith <m.siglreith@gmail.com>",
|
|
|
|
"Marijn Suijten <marijn@traverseresearch.nl>",
|
|
|
|
]
|
2020-07-04 23:21:39 +10:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "Interop library between ash and raw-window-handle"
|
2023-11-18 02:55:05 +11:00
|
|
|
repository = "https://github.com/ash-rs/ash"
|
|
|
|
keywords = ["windowing", "ash", "graphics", "vulkan", "raw-window-handle"]
|
|
|
|
categories = [
|
|
|
|
"api-bindings",
|
|
|
|
"game-development",
|
|
|
|
"graphics",
|
|
|
|
"rendering::graphics-api"
|
|
|
|
]
|
2023-02-18 04:11:44 +11:00
|
|
|
edition = "2021"
|
2023-03-10 09:39:44 +11:00
|
|
|
rust-version = "1.64.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-09-23 20:40:12 +10:00
|
|
|
raw-window-handle = "0.5"
|
2020-07-04 23:21:39 +10:00
|
|
|
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
2022-09-23 20:40:12 +10:00
|
|
|
raw-window-metal = "0.3"
|
2020-07-04 23:21:39 +10:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-22 06:27:23 +11:00
|
|
|
winit = "0.28.0"
|
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"]
|