mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
1b9584cfc0
swc_ecma_transforms_compat: - Fix optional chaining. (#2063) node/swc: - Fix definition of `ImportDeclaration`. (#2059) testing: - Allow using `testing` with stable `rustc`. testing_macros: - Add `#[inline(never)]`.
23 lines
535 B
TOML
23 lines
535 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "General purpose testing macros"
|
|
documentation = "https://rustdoc.swc.rs/testing_macros/"
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
name = "testing_macros"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.2.2"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
glob = "0.3"
|
|
pmutil = "0.5.1"
|
|
proc-macro2 = "1.0.24"
|
|
quote = "1"
|
|
regex = "1"
|
|
relative-path = "1.3.2"
|
|
syn = {version = "1", features = ["fold", "parsing", "full", "extra-traits"]}
|