* it was named `hurl!` instead of just `url!` because it was clashing with the crate `url` so we would have been forced to use it with `harmony_macros::url!` which is less sexy Reviewed-on: https://git.nationtech.io/NationTech/harmony/pulls/135
22 lines
402 B
TOML
22 lines
402 B
TOML
[package]
|
|
name = "harmony_macros"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
harmony_types = { path = "../harmony_types" }
|
|
quote = "1.0.37"
|
|
serde = "1.0.217"
|
|
serde_yaml = "0.9.34"
|
|
syn = "2.0.90"
|
|
cidr.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0.217", features = ["derive"] }
|