third_party_rust_syn/Cargo.toml

33 lines
874 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-10-25 07:32:23 +00:00
version = "0.10.0-rc1" # 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-10-23 18:00:14 +00:00
expand = ["full", "parsing", "printing"]
2016-09-23 21:41:55 +00:00
full = []
2016-09-30 16:12:02 +00:00
parsing = ["unicode-xid"]
pretty = ["syntex_syntax"]
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-24 03:50:31 +00:00
clippy = { version = "0.*", optional = true }
2016-10-08 21:57:28 +00:00
quote = { version = "0.3.0", optional = true }
syntex_syntax = { version = "0.47.0", optional = true }
2016-09-30 16:12:02 +00:00
unicode-xid = { version = "0.0.3", optional = true }
2016-10-01 07:40:31 +00:00
[dev-dependencies]
syntex_pos = "0.47.0"
syntex_syntax = "0.47.0"
2016-10-23 18:00:14 +00:00
tempdir = "0.3.5"
time = "0.1.35"
2016-10-01 07:40:31 +00:00
walkdir = "0.1.8"