1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "General purpose testing macros"
documentation = "https://rustdoc.swc.rs/testing_macros/"
edition = { workspace = true }
license = { workspace = true }
name = "testing_macros"
repository = { workspace = true }
version = "1.0.1"
[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
|