mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 14:56:42 +00:00
4133a3bf63
The use of `/` is deprecated, per the Cargo reference: https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields
24 lines
486 B
TOML
24 lines
486 B
TOML
[package]
|
|
name = "vulkano-macros"
|
|
version = "0.33.0"
|
|
edition = "2021"
|
|
authors = ["The vulkano contributors"]
|
|
repository = "https://github.com/vulkano-rs/vulkano"
|
|
description = "Macros used by Vulkano"
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano"
|
|
homepage = "https://vulkano.rs"
|
|
publish = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "1.0"
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
proc-macro-crate = "1.2"
|
|
|
|
[dev-dependencies]
|
|
vulkano = { path = "../vulkano" }
|