ash/ash-window/Cargo.toml

35 lines
924 B
TOML
Raw Normal View History

[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"]