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"
|
2018-06-03 17:39:32 +00:00
|
|
|
readme = "../../README.md"
|
2018-04-12 23:07:37 +00:00
|
|
|
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-09-20 04:47:58 +00:00
|
|
|
indexmap = "1.0"
|
2018-05-21 16:27:44 +00:00
|
|
|
quote = "0.6.1"
|
2018-08-07 02:58:07 +00:00
|
|
|
rocket_http = { version = "0.4.0-dev", path = "../http/" }
|
|
|
|
|
|
|
|
[dependencies.derive_utils]
|
|
|
|
git = "https://github.com/SergioBenitez/derive-utils"
|
2018-09-16 07:33:16 +00:00
|
|
|
rev = "87ad56ba"
|
2018-08-07 02:58:07 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rocket = { version = "0.4.0-dev", path = "../lib" }
|
2018-08-27 02:24:13 +00:00
|
|
|
compiletest_rs = "0.3.14"
|