third_party_rust_syn/Cargo.toml

21 lines
514 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"
2016-09-24 02:27:54 +00:00
version = "0.6.0" # don't forget to update version in readme
2016-09-03 18:33:15 +00:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Nom parser for Rust items"
2016-09-07 15:48:23 +00:00
repository = "https://github.com/dtolnay/syn"
documentation = "https://dtolnay.github.io/syn/syn/"
2016-09-03 18:33:15 +00:00
include = ["Cargo.toml", "src/**/*.rs"]
2016-09-04 18:26:41 +00:00
[features]
2016-09-04 18:52:12 +00:00
default = ["parsing", "printing"]
2016-09-11 19:58:56 +00:00
aster = []
2016-09-23 21:41:55 +00:00
full = []
2016-09-14 05:46:39 +00:00
parsing = []
2016-09-04 18:52:12 +00:00
printing = ["quote"]
2016-09-11 19:58:56 +00:00
visit = []
2016-09-04 18:26:41 +00:00
2016-09-03 18:33:15 +00:00
[dependencies]
2016-09-12 00:46:52 +00:00
quote = { version = "0.1.2", optional = true }