24 lines
540 B
TOML
24 lines
540 B
TOML
[package]
|
|
name = "padding-struct"
|
|
version = "0.2.0"
|
|
description = "A procedural macro for automatically adding explicit padding fields to #[repr(C)] structs"
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2.workspace = true
|
|
quote.workspace = true
|
|
syn.workspace = true
|
|
|
|
[dev-dependencies]
|
|
zerocopy.workspace = true
|
|
|
|
[lints]
|
|
workspace = true |