-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
29 lines (25 loc) · 970 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
[package]
name = "qualifier_attr"
version = "0.2.2"
authors = ["Dmitrii Demenev <[email protected]>"]
edition = "2021"
rust-version = "1.56.1" # https://github.com/foresterre/cargo-msrv
description = "Procedural macro attributes for adding \"qualifiers\" (pub, async, unsafe, const, extern \"C\", ...) to various items."
documentation = "https://docs.rs/qualifier_attr"
readme = "README.md"
# homepage = "https://github.com/JohnScience/qualifier_attr"
repository = "https://github.com/JohnScience/qualifier_attr"
license = "MIT OR Apache-2.0"
# license-file | not needed
keywords = ["conditional", "cfg_attr", "extern", "async", "pub"]
categories = ["rust-patterns"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
syn = { version = "2", features = ["full", "parsing", "printing"] }
quote = "1"
proc-macro2 = "1"
[lib]
proc-macro = true
[features]
default = ["legacy_attrs"]
legacy_attrs = []