Rocket/contrib/codegen/Cargo.toml

32 lines
866 B
TOML
Raw Normal View History

[package]
name = "rocket_contrib_codegen"
2019-05-13 23:18:48 +00:00
version = "0.5.0-dev"
authors = ["Sergio Benitez <sb@sergio.bz>"]
description = "Procedural macros for the Rocket contrib libraries."
2019-05-13 23:18:48 +00:00
documentation = "https://api.rocket.rs/v0.5/rocket_contrib/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
2018-10-29 11:52:31 +00:00
readme = "../../README.md"
keywords = ["rocket", "contrib", "code", "generation", "proc-macro"]
license = "MIT/Apache-2.0"
2018-10-31 20:29:22 +00:00
build = "build.rs"
[features]
database_attribute = []
[lib]
proc-macro = true
[dependencies]
devise = "0.2"
quote = "0.6"
2018-10-29 11:52:31 +00:00
[build-dependencies]
yansi = "0.5"
2019-05-24 08:47:49 +00:00
version_check = "0.9.1"
2018-12-12 08:00:10 +00:00
[dev-dependencies]
compiletest_rs = { version = "0.3", features = ["stable"] }
2019-05-13 23:18:48 +00:00
rocket = { version = "0.5.0-dev", path = "../../core/lib" }
rocket_contrib = { version = "0.5.0-dev", path = "../lib", features = ["diesel_sqlite_pool"] }