mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-10-30 05:52:44 +00:00
41ded32156
* Update dependencies, clippy warnings * Remove allowed clippy lint that no longer triggers as of Rust 1.67.1
27 lines
963 B
TOML
27 lines
963 B
TOML
[package]
|
|
name = "vulkano-win"
|
|
version = "0.32.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", "objc", "core-graphics-types"]
|
|
raw-window-handle_ = ["raw-window-handle"]
|
|
|
|
[dependencies]
|
|
raw-window-handle = { version = "0.5", optional = true }
|
|
vulkano = { version = "0.32.0", path = "../vulkano" }
|
|
winit = { version = "0.28", optional = true }
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
objc = { version = "0.2.5", optional = true }
|
|
core-graphics-types = { version = "0.1", optional = true }
|