2016-04-23 11:24:56 +00:00
|
|
|
[package]
|
|
|
|
name = "vulkano-win"
|
2023-10-24 16:54:46 +00:00
|
|
|
version = "0.34.0"
|
2021-12-16 08:46:44 +00:00
|
|
|
edition = "2021"
|
2023-10-24 16:54:46 +00:00
|
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
2023-10-29 17:54:11 +00:00
|
|
|
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"
|
2023-08-18 11:36:49 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-10-29 17:54:11 +00:00
|
|
|
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"]
|
2023-10-29 17:54:11 +00:00
|
|
|
readme = "../README.md"
|
2016-04-23 11:24:56 +00:00
|
|
|
|
2020-06-09 08:23:22 +00:00
|
|
|
[features]
|
2023-03-25 11:56:36 +00:00
|
|
|
default = ["winit", "raw-window-handle"]
|
|
|
|
raw-window-handle = ["dep:raw-window-handle"]
|
|
|
|
raw-window-handle_ = ["dep:raw-window-handle"]
|
|
|
|
winit = ["dep:winit", "dep:objc", "dep:core-graphics-types"]
|
|
|
|
winit_ = ["dep:winit", "dep:objc", "dep:core-graphics-types"]
|
2020-06-09 08:23:22 +00:00
|
|
|
|
2016-04-23 11:24:56 +00:00
|
|
|
[dependencies]
|
2022-08-11 07:49:29 +00:00
|
|
|
raw-window-handle = { version = "0.5", optional = true }
|
2023-10-24 16:54:46 +00:00
|
|
|
vulkano = { version = "0.34.0", path = "../vulkano", default-features = false }
|
2023-03-06 02:12:17 +00:00
|
|
|
winit = { version = "0.28", optional = true }
|
2017-05-26 18:26:05 +00:00
|
|
|
|
2022-08-11 07:49:29 +00:00
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
|
|
objc = { version = "0.2.5", optional = true }
|
2022-10-31 08:09:41 +00:00
|
|
|
core-graphics-types = { version = "0.1", optional = true }
|