vulkano/vulkano-win/Cargo.toml

35 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "vulkano-win"
2023-10-24 16:54:46 +00:00
version = "0.34.0"
edition = "2021"
authors = [
"Pierre Krieger <pierre.krieger1708@gmail.com>",
"The vulkano contributors",
]
repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-win"
2016-04-30 10:08:48 +00:00
description = "Link between vulkano and winit"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/vulkano-win"
2018-11-08 02:19:42 +00:00
homepage = "https://vulkano.rs"
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
2017-01-31 08:59:07 +00:00
categories = ["rendering::graphics-api"]
readme = "../README.md"
[features]
default = ["winit", "raw-window-handle"]
raw-window-handle = ["dep:raw-window-handle"]
raw-window-handle_ = ["dep:raw-window-handle"]
winit = ["dep:winit"]
winit_ = ["dep:winit"]
# NOTE(Marc): The dependencies here are not workspace dependencies because vulkano-win is
# deprecated and won't be receiving updates.
[dependencies]
raw-window-handle = { version = "0.5", optional = true }
vulkano = { workspace = true }
winit = { version = "0.28", optional = true }
[target.'cfg(target_vendor = "apple")'.dependencies]
raw-window-metal.workspace = true