16 lines
317 B
TOML
16 lines
317 B
TOML
[package]
|
|
name = "dev-macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
#proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "1.0"
|
|
#quote = "1.0"
|
|
#proc-macro2 = "1.0"
|
|
|
|
dev-dtos = { git = "https://github.com/franklinblanco/user-svc-dtos-rust.git" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1" } |