[package]
name = "syn"
version = "0.5.1"
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Nom parser for Rust items"
repository = "https://github.com/dtolnay/syn"
documentation = "https://dtolnay.github.io/syn/syn/"
include = ["Cargo.toml", "src/**/*.rs"]
[features]
default = ["parsing", "printing"]
aster = []
parsing = ["nom"]
printing = ["quote"]
visit = []
[dependencies]
nom = { version = "1.2.4", optional = true }
quote = { version = "0.1.2", optional = true }