You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
991 B
30 lines
991 B
4 months ago
|
[package]
|
||
|
name = "quote"
|
||
|
version = "1.0.9" # 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"
|
||
|
|
||
|
[dependencies]
|
||
|
proc-macro2 = { version = "1.0.20", default-features = false }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
rustversion = "1.0"
|
||
|
trybuild = { version = "1.0.19", features = ["diff"] }
|
||
|
|
||
|
[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/proc-macro"]
|
||
|
|
||
|
[package.metadata.docs.rs]
|
||
|
targets = ["x86_64-unknown-linux-gnu"]
|