[package] name = "standalone-quote" version = "0.5.0" # don't forget to update html_root_url, version in readme for breaking changes authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "Fork of quote that allows disabling the proc-macro feature in proc-macro2 so as to remove the rustc dylib dependency" repository = "https://github.com/staktrace/standalone-quote" include = ["Cargo.toml", "src/**/*.rs", "tests/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] [dependencies] proc-macro2 = { version = "0.2.3", default-features = false } [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"]