-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 754 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 754 Bytes
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
[package]
name = "cfg-tt"
version = "0.3.0"
description = "A procedural macro that allows using #[cfg] anywhere and at token granularity."
readme = "README.md"
repository = "https://github.com/OpenByteDev/cfg-tt"
homepage = "https://github.com/OpenByteDev/cfg-tt"
documentation = "https://docs.rs/cfg-tt"
license = "MIT"
authors = ["OpenByte <development.openbyte@gmail.com>"]
edition = "2024"
keywords = [
"cfg",
"token",
"anywhere",
"proc-macro",
"token-tree",
]
categories = [
"rust-patterns"
]
[lib]
proc-macro = true
[dependencies]
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"
syn = { version = "2.0", features = ["full", "parsing", "extra-traits"] }
[dev-dependencies]
trybuild = "1.0"