Rocket/core/codegen_next/Cargo.toml

31 lines
815 B
TOML
Raw Normal View History

[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"
keywords = ["rocket", "web", "framework", "code", "generation"]
license = "MIT/Apache-2.0"
# if publishing, add to config scripts
publish = false
[lib]
proc-macro = true
[dependencies]
2018-09-20 04:47:58 +00:00
indexmap = "1.0"
quote = "0.6.1"
rocket_http = { version = "0.4.0-dev", path = "../http/" }
[dependencies.derive_utils]
git = "https://github.com/SergioBenitez/derive-utils"
rev = "62f361f"
[dev-dependencies]
rocket = { version = "0.4.0-dev", path = "../lib" }
compiletest_rs = "0.3.14"