mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-23 07:15:31 +00:00
d3217d2531
* Update dependencies * MacOS fix
28 lines
965 B
TOML
28 lines
965 B
TOML
[package]
|
|
name = "vulkano-win"
|
|
version = "0.29.0"
|
|
edition = "2021"
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
|
repository = "https://github.com/vulkano-rs/vulkano"
|
|
description = "Link between vulkano and winit"
|
|
license = "MIT/Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano"
|
|
homepage = "https://vulkano.rs"
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
|
categories = ["rendering::graphics-api"]
|
|
|
|
[features]
|
|
default = ["winit_", "raw-window-handle_"]
|
|
winit_ = ["winit", "metal", "cocoa", "objc"]
|
|
raw-window-handle_ = ["raw-window-handle"]
|
|
|
|
[dependencies]
|
|
raw-window-handle = { version = "0.4", optional = true }
|
|
vulkano = { version = "0.29.0", path = "../vulkano" }
|
|
winit = { version = "0.26", optional = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cocoa = { version = "0.24", optional = true }
|
|
metal = { version = "0.23", optional = true }
|
|
objc = { version = "0.2", optional = true }
|