mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
1e9128795f
* Use workspace dependencies * Update CI workflow to account for the two workspaces * Make the tables in the root workspace a bit nicer to look at * Use workspace package version * Remove workspace package version * Make winit a workspace dependency as well
33 lines
1.2 KiB
TOML
33 lines
1.2 KiB
TOML
[package]
|
|
name = "vulkano-win"
|
|
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"
|
|
description = "Link between vulkano and winit"
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano-win"
|
|
homepage = "https://vulkano.rs"
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
|
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", "dep:objc", "dep:core-graphics-types"]
|
|
winit_ = ["dep:winit", "dep:objc", "dep:core-graphics-types"]
|
|
|
|
# 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(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
objc = { version = "0.2.5", optional = true }
|
|
core-graphics-types = { version = "0.1", optional = true }
|