• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "syn-mid"
3version = "0.5.3"
4authors = ["Taiki Endo <te316e89@gmail.com>"]
5edition = "2018"
6license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/syn-mid"
8documentation = "https://docs.rs/syn-mid"
9keywords = ["syn", "macros"]
10categories = ["development-tools::procedural-macro-helpers"]
11readme = "README.md"
12exclude = ["/.github", "/scripts"]
13description = """
14Providing the features between \"full\" and \"derive\" of syn.
15"""
16
17[package.metadata.docs.rs]
18all-features = true
19targets = ["x86_64-unknown-linux-gnu"]
20
21[workspace]
22members = ["examples/const_fn", "examples/const_fn_test"]
23
24[features]
25clone-impls = ["syn/clone-impls"]
26
27# NB: proc-macro2, quote, and syn are public dependencies.
28[dependencies]
29proc-macro2 = { version = "1", default-features = false }
30quote = { version = "1", default-features = false }
31syn = { version = "1.0.44", default-features = false, features = ["parsing", "printing", "derive"] }
32