Basic example to try the harmony! macro

This commit is contained in:
Ian Letourneau
2025-11-10 11:50:22 -05:00
commit cc6da434c7
9 changed files with 377 additions and 0 deletions

9
harmony/Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "harmony"
version = "0.1.0"
edition = "2024"
[dependencies]
harmony_macros = { version = "0.1.0", path = "../harmony_macros" }
async-trait = "0.1.89"
tokio = { version = "1.48.0", features = ["rt", "rt-multi-thread", "macros"] }