mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
29 lines
641 B
TOML
29 lines
641 B
TOML
[package]
|
|
name = "oxc_macros"
|
|
version = "0.0.0"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
include = ["/src"]
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
convert_case = { workspace = true }
|
|
itertools = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, features = ["derive", "parsing", "printing", "proc-macro"] }
|