Rocket/contrib/codegen/Cargo.toml

29 lines
854 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."
documentation = "https://api.rocket.rs/master/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 OR Apache-2.0"
2019-06-13 02:17:59 +00:00
edition = "2018"
[features]
database_attribute = []
[lib]
proc-macro = true
[dependencies]
quote = "1.0"
2021-03-04 07:13:09 +00:00
devise = { git = "https://github.com/SergioBenitez/Devise.git", rev = "3ebe83" }
2018-10-29 11:52:31 +00:00
2018-12-12 08:00:10 +00:00
[dev-dependencies]
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"] }
trybuild = "1.0"
version_check = "0.9"