harmony/harmony_macros/Cargo.toml
Ian Letourneau 6ea5630d30
Some checks failed
Compile and package harmony_composer / package_harmony_composer (push) Waiting to run
Run Check Script / check (push) Has been cancelled
feat: add hurl! and local_folder! macros to make Url easier to create (#135)
* 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
2025-09-08 14:43:41 +00:00

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"] }