• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "syn-mid"
3version = "0.6.0"
4edition = "2021"
5rust-version = "1.56"
6license = "Apache-2.0 OR MIT"
7repository = "https://github.com/taiki-e/syn-mid"
8keywords = ["syn", "macros"]
9categories = ["development-tools::procedural-macro-helpers", "parser-implementations"]
10exclude = ["/.*", "/tools"]
11description = """
12Providing the features between \"full\" and \"derive\" of syn.
13"""
14
15[package.metadata.docs.rs]
16all-features = true
17targets = ["x86_64-unknown-linux-gnu"]
18
19[workspace]
20resolver = "2"
21members = ["examples/const_fn"]
22
23[lib]
24doc-scrape-examples = false
25
26[features]
27clone-impls = ["syn/clone-impls"]
28
29# Note: proc-macro2, quote, and syn are public dependencies.
30[dependencies]
31proc-macro2 = { version = "1.0.60", default-features = false }
32quote = { version = "1", default-features = false }
33syn = { version = "2", default-features = false, features = ["parsing", "printing", "derive"] }
34