blob: 37027ab9f7048c250f40089f4fbd98fda7d1cd29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[package]
name = "mingling_macros"
version = "0.1.8"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/catilgrass/mingling"
description = "Macros of the mingling library"
[lib]
proc-macro = true
[features]
nightly = []
default = []
async = []
clap = []
comp = []
dispatch_tree = []
general_renderer = []
repl = []
[dependencies]
syn = { version = "2.0", features = ["full", "visit-mut"] }
quote = "1.0"
proc-macro2 = "1.0"
just_fmt = "0.1.2"
once_cell = "1.21"
|