-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 607 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 607 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
[package]
name = "expand"
version = "0.3.0"
authors = ["figsoda <figsoda@pm.me>"]
edition = "2021"
description = "Macro to expand byte string and string literals"
documentation = "https://docs.rs/expand"
readme = "README.md"
homepage = "https://github.com/figsoda/expand"
repository = "https://github.com/figsoda/expand"
license = "MPL-2.0"
keywords = ["literal", "macro", "macros", "pattern", "proc-macro"]
categories = ["no-std", "rust-patterns"]
[lib]
proc-macro = true
[dependencies]
quote = "1.0.26"
[dependencies.syn]
version = "2.0.0"
default-features = false
features = ["parsing", "proc-macro"]