mirror of
https://github.com/Sunscreen-tech/Sunscreen.git
synced 2026-01-14 16:17:56 -05:00
20 lines
512 B
TOML
20 lines
512 B
TOML
[package]
|
|
name = "sunscreen_frontend_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.32"
|
|
quote = "1.0.10"
|
|
syn = { version = "1.0.81", features = ["derive", "full", "fold"] }
|
|
sunscreen_frontend_types = { path = "../sunscreen_frontend_types" }
|
|
|
|
[dev-dependencies]
|
|
trybuild = "1.0.52"
|
|
serde_json = "1.0.72"
|
|
sunscreen_frontend = { path = "../sunscreen_frontend" } |