Add Cargo metadata to contrib and codegen crates.

This commit is contained in:
Sergio Benitez 2016-12-23 04:20:46 -08:00
parent d56ea65f27
commit 22a058d2d5
3 changed files with 15 additions and 1 deletions

View File

@ -2,6 +2,13 @@
name = "rocket_codegen"
version = "0.1.0-rc"
authors = ["Sergio Benitez <sb@sergio.bz>"]
description = "Code generation 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", "codegen", "code", "generation"]
license = "MIT/Apache-2.0"
[lib]
plugin = true

View File

@ -2,6 +2,13 @@
name = "rocket_contrib"
version = "0.1.0-rc"
authors = ["Sergio Benitez <sb@sergio.bz>"]
description = "Community contributed libraries for the Rocket web framework."
documentation = "https://api.rocket.rs/rocket_contrib/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
readme = "../README.md"
keywords = ["rocket", "web", "framework", "contrib", "contributed"]
license = "MIT/Apache-2.0"
[features]
default = ["json"]

View File

@ -6,7 +6,7 @@ description = """
Web framework for nightly with a focus on ease-of-use, expressability, and
speed.
"""
documentation = "https://api.rocket.rs"
documentation = "https://api.rocket.rs/rocket/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
readme = "../README.md"