swc/crates/testing_macros/Cargo.toml
2024-07-19 04:27:57 +00:00

31 lines
848 B
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "General purpose testing macros"
documentation = "https://rustdoc.swc.rs/testing_macros/"
edition = "2021"
license = "Apache-2.0"
name = "testing_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.14"
[features]
# Skip generating fixtures so the editor becomes faster again
rust-analyzer = []
[lib]
bench = false
proc-macro = true
[dependencies]
anyhow = { workspace = true }
glob = { workspace = true }
once_cell = { workspace = true }
proc-macro2 = { workspace = true }
quote = { workspace = true }
regex = { workspace = true }
relative-path = { workspace = true }
[dependencies.syn]
features = ["fold", "parsing", "full", "extra-traits"]
workspace = true