2016-04-23 11:24:56 +00:00
|
|
|
[package]
|
|
|
|
name = "vulkano-win"
|
2022-07-20 08:50:41 +00:00
|
|
|
version = "0.30.0"
|
2021-12-16 08:46:44 +00:00
|
|
|
edition = "2021"
|
2017-08-05 09:06:13 +00:00
|
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
|
|
|
repository = "https://github.com/vulkano-rs/vulkano"
|
2016-04-30 10:08:48 +00:00
|
|
|
description = "Link between vulkano and winit"
|
|
|
|
license = "MIT/Apache-2.0"
|
2018-11-08 02:19:42 +00:00
|
|
|
documentation = "https://docs.rs/vulkano"
|
|
|
|
homepage = "https://vulkano.rs"
|
|
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
2017-01-31 08:59:07 +00:00
|
|
|
categories = ["rendering::graphics-api"]
|
2016-04-23 11:24:56 +00:00
|
|
|
|
2020-06-09 08:23:22 +00:00
|
|
|
[features]
|
|
|
|
default = ["winit_", "raw-window-handle_"]
|
|
|
|
winit_ = ["winit", "metal", "cocoa", "objc"]
|
|
|
|
raw-window-handle_ = ["raw-window-handle"]
|
|
|
|
|
2016-04-23 11:24:56 +00:00
|
|
|
[dependencies]
|
2021-12-16 08:46:44 +00:00
|
|
|
raw-window-handle = { version = "0.4", optional = true }
|
2022-07-20 08:50:41 +00:00
|
|
|
vulkano = { version = "0.30.0", path = "../vulkano" }
|
2022-07-30 06:58:44 +00:00
|
|
|
winit = { version = "0.27", optional = true }
|
2017-05-26 18:26:05 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2022-05-29 17:27:47 +00:00
|
|
|
cocoa = { version = "0.24", optional = true }
|
|
|
|
metal = { version = "0.23", optional = true }
|
|
|
|
objc = { version = "0.2", optional = true }
|