third_party_rust_syn/Cargo.toml

33 lines
946 B
TOML
Raw Normal View History

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"
description = "Nom parser for Rust source code"
2016-09-07 15:48:23 +00:00
repository = "https://github.com/dtolnay/syn"
documentation = "https://dtolnay.github.io/syn/syn/"
categories = ["development-tools::procedural-macro-helpers"]
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]
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 = []
clone-impls = []
extra-traits = []
2016-09-04 18:26:41 +00:00
2016-09-03 18:33:15 +00:00
[dependencies]
quote = { version = "0.3.7", optional = true }
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]
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"