blob: 2064e7c32ae14ab4417c6621688b6dedf933c5ba [file] [log] [blame]
[package]
name = "quote-next"
version = "0.6.13" # don't forget to update html_root_url, version in readme for breaking changes
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Quasi-quoting macro quote!(...)"
repository = "https://github.com/dtolnay/quote"
documentation = "https://docs.rs/quote/"
keywords = ["syn"]
categories = ["development-tools::procedural-macro-helpers"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "tests/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
edition = "2018"
publish = false # contains breaking changes
[lib]
name = "quote"
[dependencies]
proc-macro2-next = { version = "0.4.21", default-features = false }
[dev-dependencies]
rustversion = "0.1"
trybuild = "1.0"
[features]
default = ["proc-macro"]
# Disabling the proc-macro feature removes the dynamic library dependency on
# libproc_macro in the rustc compiler.
proc-macro = ["proc-macro2-next/proc-macro"]
[badges]
travis-ci = { repository = "dtolnay/quote" }
[patch.crates-io]
proc-macro2-next = { git = "https://github.com/alexcrichton/proc-macro2", branch = "next" }