refactor(hashing): introduce Hashable derive macro and migrate server types

This commit is contained in:
CleverWild
2026-04-08 01:32:59 +02:00
committed by Skipper
parent 100c257e95
commit 247cb90fbf
19 changed files with 238 additions and 118 deletions

View File

@@ -0,0 +1,18 @@
[package]
name = "arbiter-macros"
version = "0.1.0"
edition = "2024"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["derive", "fold", "full", "visit-mut"] }
[dev-dependencies]
arbiter-crypto = { path = "../arbiter-crypto" }
[lints]
workspace = true