mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
31 lines
848 B
TOML
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
|