20 lines
339 B
TOML
20 lines
339 B
TOML
|
|
[package]
|
|
name = "worker-macros"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0", features = ["full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
worker-types = { path = "../worker-types" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
schemars = "1.0.3"
|