2018-04-12 23:07:37 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket_codegen_next"
|
|
|
|
version = "0.4.0-dev"
|
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
description = "Procedural macros for the Rocket web framework."
|
|
|
|
documentation = "https://api.rocket.rs/rocket_codegen/"
|
|
|
|
homepage = "https://rocket.rs"
|
|
|
|
repository = "https://github.com/SergioBenitez/Rocket"
|
|
|
|
readme = "../README.md"
|
|
|
|
keywords = ["rocket", "web", "framework", "code", "generation"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
|
2018-06-03 16:44:38 +00:00
|
|
|
# if publishing, add to config scripts
|
|
|
|
publish = false
|
|
|
|
|
2018-04-12 23:07:37 +00:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2018-05-21 16:27:44 +00:00
|
|
|
quote = "0.6.1"
|
|
|
|
proc-macro2 = { version = "0.4.3", features = ["nightly"] }
|
|
|
|
syn = { version = "0.14.0", features = ["full", "extra-traits"] }
|