c87eb53b92
Some links were still pointing to the (moved) `MaikKlein/ash` repo, instead of the new shared `ash-rs/ash` repository under this organisation, GitHub still provides a redirect, but we should aim to provide the correct link from the get-go. Only the gitter channel remains as it was impossible to get the room to be renamed. The `ash-rs/ash` channel exists but there is currently no activity.
35 lines
924 B
TOML
35 lines
924 B
TOML
[package]
|
|
name = "ash-window"
|
|
version = "0.12.0"
|
|
authors = [
|
|
"msiglreith <m.siglreith@gmail.com>",
|
|
"Marijn Suijten <marijn@traverseresearch.nl>",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Interop library between ash and raw-window-handle"
|
|
repository = "https://github.com/ash-rs/ash"
|
|
keywords = ["windowing", "ash", "graphics", "vulkan", "raw-window-handle"]
|
|
categories = [
|
|
"api-bindings",
|
|
"game-development",
|
|
"graphics",
|
|
"rendering::graphics-api"
|
|
]
|
|
edition = "2021"
|
|
rust-version = "1.64.0"
|
|
|
|
[dependencies]
|
|
ash = { path = "../ash", version = "0.37", 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"] }
|
|
|
|
[[example]]
|
|
name = "winit"
|
|
required-features = ["ash/linked"]
|