aboutsummaryrefslogtreecommitdiff
path: root/syn-mid/Cargo.toml
blob: f92e7a0c25ecbd6124473fc0372ed4ab43f1619a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "syn-mid"
version = "0.4.0"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0/MIT"
repository = "https://github.com/taiki-e/syn-mid"
documentation = "https://docs.rs/syn-mid/"
readme = "README.md"
keywords = ["syn", "macros"]
categories = ["development-tools::procedural-macro-helpers"]
description = "Providing the features between \"full\" and \"derive\" of syn."

[workspace]
members = ["examples/const_fn", "examples/const_fn_test"]

[features]
clone-impls = ["syn/clone-impls"]

[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", default-features = false, features = ["parsing", "printing", "derive"] }