2018-04-12 23:07:37 +00:00
|
|
|
[package]
|
2018-10-22 06:53:09 +00:00
|
|
|
name = "rocket_codegen"
|
2018-04-12 23:07:37 +00:00
|
|
|
version = "0.4.0-dev"
|
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
description = "Procedural macros for the Rocket web framework."
|
2018-10-27 04:20:12 +00:00
|
|
|
documentation = "https://api.rocket.rs/v0.4/rocket_codegen/"
|
2018-04-12 23:07:37 +00:00
|
|
|
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-10-06 04:56:46 +00:00
|
|
|
build = "../lib/build.rs"
|
2018-04-12 23:07:37 +00:00
|
|
|
|
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/" }
|
|
|
|
|
2018-10-06 04:56:46 +00:00
|
|
|
[build-dependencies]
|
|
|
|
yansi = "0.4"
|
|
|
|
version_check = "0.1.3"
|
|
|
|
|
2018-08-07 02:58:07 +00:00
|
|
|
[dependencies.derive_utils]
|
2018-10-04 10:54:46 +00:00
|
|
|
git = "https://github.com/SergioBenitez/derive-utils"
|
2018-10-05 04:44:42 +00:00
|
|
|
rev = "62f361f"
|
2018-08-07 02:58:07 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rocket = { version = "0.4.0-dev", path = "../lib" }
|
2018-10-28 11:07:19 +00:00
|
|
|
compiletest_rs = { version = "0.3", features = ["stable"] }
|