mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 06:12:55 +00:00
33 lines
542 B
TOML
33 lines
542 B
TOML
[package]
|
|
name = "common-macro"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.66"
|
|
quote = "1.0"
|
|
syn = "1.0"
|
|
syn2 = { version = "2.0", package = "syn", features = [
|
|
"derive",
|
|
"parsing",
|
|
"printing",
|
|
"clone-impls",
|
|
"proc-macro",
|
|
"extra-traits",
|
|
"full",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
arc-swap = "1.0"
|
|
common-query.workspace = true
|
|
datatypes.workspace = true
|
|
snafu.workspace = true
|
|
static_assertions = "1.1.0"
|