blob: 965c63adaa10a6b47893e0819f83d2a052958624 [file] [log] [blame]
Matthew Maurer8c1c2802020-06-02 11:15:21 -07001[package]
2name = "syn-mid"
Haibo Huang9082fc72021-01-05 21:39:00 -08003version = "0.5.3"
Matthew Maurer8c1c2802020-06-02 11:15:21 -07004authors = ["Taiki Endo <te316e89@gmail.com>"]
5edition = "2018"
6license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/syn-mid"
Matthew Maurer8c1c2802020-06-02 11:15:21 -07008documentation = "https://docs.rs/syn-mid"
9keywords = ["syn", "macros"]
10categories = ["development-tools::procedural-macro-helpers"]
11readme = "README.md"
Haibo Huang9082fc72021-01-05 21:39:00 -080012exclude = ["/.github", "/scripts"]
Matthew Maurer8c1c2802020-06-02 11:15:21 -070013description = """
14Providing the features between \"full\" and \"derive\" of syn.
15"""
16
Chih-Hung Hsieh0d7fd462020-10-26 13:16:45 -070017[package.metadata.docs.rs]
18all-features = true
19targets = ["x86_64-unknown-linux-gnu"]
20
Matthew Maurer8c1c2802020-06-02 11:15:21 -070021[workspace]
22members = ["examples/const_fn", "examples/const_fn_test"]
23
24[features]
25clone-impls = ["syn/clone-impls"]
26
Haibo Huang9082fc72021-01-05 21:39:00 -080027# NB: proc-macro2, quote, and syn are public dependencies.
Matthew Maurer8c1c2802020-06-02 11:15:21 -070028[dependencies]
Chih-Hung Hsieh0d7fd462020-10-26 13:16:45 -070029proc-macro2 = { version = "1", default-features = false }
30quote = { version = "1", default-features = false }
31syn = { version = "1.0.44", default-features = false, features = ["parsing", "printing", "derive"] }