add macros crate

This commit is contained in:
naskya 2024-06-25 16:30:52 +09:00
parent 61e54a10ff
commit d26da39955
Signed by: naskya
GPG key ID: 712D413B3A9FED5C
4 changed files with 14 additions and 1 deletions

4
Cargo.lock generated
View file

@ -883,6 +883,10 @@ version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]]
name = "macros"
version = "0.1.0"
[[package]]
name = "md-5"
version = "0.10.6"

View file

@ -1,3 +1,3 @@
[workspace]
members = ["fishctl"]
members = ["fishctl", "macros"]
resolver = "2"

9
macros/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "macros"
version = "0.1.0"
edition = "2021"
license = "MIT"
publish = false
[lib]
proc-macro = true

0
macros/src/lib.rs Normal file
View file