mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-21 22:34:43 +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
26 lines
693 B
TOML
26 lines
693 B
TOML
[package]
|
|
name = "vulkano-macros"
|
|
version = "0.34.0"
|
|
edition = "2021"
|
|
authors = ["The vulkano contributors"]
|
|
repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-macros"
|
|
description = "Macros used by vulkano"
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano-macros"
|
|
homepage = "https://vulkano.rs"
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
|
categories = ["rendering::graphics-api"]
|
|
readme = "../README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
proc-macro-crate = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
vulkano = { workspace = true }
|