mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
15 lines
284 B
TOML
15 lines
284 B
TOML
[package]
|
|
name = "test-macros"
|
|
version = "0.1.0"
|
|
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.x"
|
|
quote = "1.x"
|
|
syn = { version = "1.x", features = ["full"] }
|
|
test-types = { path = "../test-types" }
|