2016-09-03 18:33:15 +00:00
|
|
|
[package]
|
2016-09-07 15:18:21 +00:00
|
|
|
name = "syn"
|
2017-04-20 17:12:33 +00:00
|
|
|
version = "0.11.11" # don't forget to update version in readme for breaking changes
|
2016-09-03 18:33:15 +00:00
|
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
|
|
license = "MIT/Apache-2.0"
|
2016-11-25 19:18:28 +00:00
|
|
|
description = "Nom parser for Rust source code"
|
2016-09-07 15:48:23 +00:00
|
|
|
repository = "https://github.com/dtolnay/syn"
|
2017-02-19 21:00:54 +00:00
|
|
|
documentation = "https://dtolnay.github.io/syn/syn/"
|
2017-02-10 02:27:32 +00:00
|
|
|
categories = ["development-tools::procedural-macro-helpers"]
|
2017-02-19 19:38:25 +00:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
|
2016-09-03 18:33:15 +00:00
|
|
|
|
2016-09-04 18:26:41 +00:00
|
|
|
[features]
|
2017-05-23 16:34:50 +00:00
|
|
|
default = ["parsing", "printing", "clone-impls"]
|
2016-09-11 19:58:56 +00:00
|
|
|
aster = []
|
2017-01-24 01:59:46 +00:00
|
|
|
full = []
|
2017-01-28 00:22:08 +00:00
|
|
|
parsing = ["unicode-xid", "synom"]
|
2016-09-04 18:52:12 +00:00
|
|
|
printing = ["quote"]
|
2016-09-11 19:58:56 +00:00
|
|
|
visit = []
|
2017-01-26 19:45:17 +00:00
|
|
|
fold = []
|
2017-05-23 16:34:50 +00:00
|
|
|
clone-impls = []
|
|
|
|
extra-traits = []
|
2016-09-04 18:26:41 +00:00
|
|
|
|
2016-09-03 18:33:15 +00:00
|
|
|
[dependencies]
|
2017-02-27 11:05:57 +00:00
|
|
|
quote = { version = "0.3.7", optional = true }
|
2017-01-25 15:17:11 +00:00
|
|
|
unicode-xid = { version = "0.0.4", optional = true }
|
2017-01-28 00:22:08 +00:00
|
|
|
synom = { version = "0.11", path = "synom", optional = true }
|
2016-10-01 07:40:31 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2017-02-18 17:34:36 +00:00
|
|
|
syntex_pos = "0.58"
|
|
|
|
syntex_syntax = "0.58"
|
2016-10-23 18:00:14 +00:00
|
|
|
tempdir = "0.3.5"
|
2016-10-31 03:19:51 +00:00
|
|
|
walkdir = "1.0.1"
|