File: Cargo.toml

package info (click to toggle)
rust-swc-core 35.0.0~ds-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 62,816 kB
  • sloc: javascript: 873; xml: 538; sh: 358; makefile: 35; python: 5
file content (30 lines) | stat: -rw-r--r-- 849 bytes parent folder | download | duplicates (2)
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