-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (33 loc) · 834 Bytes
/
Cargo.toml
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
31
32
33
34
35
[workspace]
members = []
exclude = [
"./tests/macro-tests",
"./tests/other-tests",
"./tests/proc-macro-tests",
"./tests/virtual-workspace-tests",
"./tests/workspace-tests",
]
resolver = "2"
[package]
name = "tryexpand"
description = "Test harness for macro expansion"
authors = ["Vincent Esche <[email protected]>", "eupn <[email protected]>"]
repository = "https://github.com/regexident/tryexpand"
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2021"
rust-version = "1.74"
version = "0.9.2"
[dependencies]
base62 = "2.0.2"
basic-toml = "0.1"
cargo_metadata = "0.18.1"
cargo_toml = "0.20.0"
diff = "0.1"
glob = "0.3"
prettyplease = "0.2"
regex = "1.11.1"
serde = { version = "1.0.197", features = ["derive"] }
syn = { version = "2", features = ["full"] }
thiserror = "1.0.58"
yansi = "1.0.1"