4bbfa54146
[Dependabot complains] that: the binary target name `examples` is forbidden, it conflicts with with cargo's build directory names And fails to provide dependency upgrades for Rust code. Fix that by renaming the folder and crate to `ash-examples`. [Dependabot complains]: https://github.com/ash-rs/ash/network/updates/748770724
23 lines
423 B
TOML
23 lines
423 B
TOML
[package]
|
|
name = "generator"
|
|
version = "0.1.0"
|
|
authors = ["Maik Klein <maikklein@googlemail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
bindgen = "0.64"
|
|
heck = "0.4"
|
|
itertools = "0.10"
|
|
nom = "7.1"
|
|
once_cell = "1.7"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
regex = "1.4"
|
|
vk-parse = { version = "0.10", features = ["vkxml-convert"] }
|
|
vkxml = "0.3"
|
|
|
|
[dependencies.syn]
|
|
version = "1.0"
|
|
features = ["full", "extra-traits"]
|