2018-04-12 23:07:37 +00:00
|
|
|
[package]
|
2018-10-22 06:53:09 +00:00
|
|
|
name = "rocket_codegen"
|
2019-05-13 23:18:48 +00:00
|
|
|
version = "0.5.0-dev"
|
2018-04-12 23:07:37 +00:00
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
description = "Procedural macros for the Rocket web framework."
|
2019-05-13 23:18:48 +00:00
|
|
|
documentation = "https://api.rocket.rs/v0.5/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"]
|
2020-06-04 05:36:42 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-10-31 20:29:22 +00:00
|
|
|
build = "build.rs"
|
2019-06-13 01:59:25 +00:00
|
|
|
edition = "2018"
|
2018-04-12 23:07:37 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2018-09-20 04:47:58 +00:00
|
|
|
indexmap = "1.0"
|
2019-09-05 22:43:57 +00:00
|
|
|
quote = "1.0"
|
2019-05-13 23:18:48 +00:00
|
|
|
rocket_http = { version = "0.5.0-dev", path = "../http/" }
|
2019-09-05 22:43:57 +00:00
|
|
|
devise = { git = "https://github.com/SergioBenitez/Devise.git", rev = "e58b3ac9a" }
|
2020-02-15 11:43:47 +00:00
|
|
|
glob = "0.3"
|
2018-08-07 02:58:07 +00:00
|
|
|
|
2018-10-06 04:56:46 +00:00
|
|
|
[build-dependencies]
|
2018-11-30 17:00:16 +00:00
|
|
|
yansi = "0.5"
|
2019-05-24 08:47:49 +00:00
|
|
|
version_check = "0.9.1"
|
2018-10-06 04:56:46 +00:00
|
|
|
|
2018-08-07 02:58:07 +00:00
|
|
|
[dev-dependencies]
|
2019-05-13 23:18:48 +00:00
|
|
|
rocket = { version = "0.5.0-dev", path = "../lib" }
|
2020-01-07 06:28:57 +00:00
|
|
|
tokio = { version = "0.2.9", features = ["io-util"] }
|
2019-08-24 17:27:10 +00:00
|
|
|
compiletest_rs = { version = "0.3", features = ["stable"] }
|