2021-05-31 16:15:00 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket_db_pools_codegen"
|
2023-11-03 23:26:07 +00:00
|
|
|
version = "0.1.0"
|
2021-05-31 16:15:00 +00:00
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>", "Jeb Rosen <jeb@jebrosen.com>"]
|
|
|
|
description = "Procedural macros for rocket_db_pools."
|
2023-11-18 17:57:25 +00:00
|
|
|
repository = "https://github.com/rwf2/Rocket/tree/master/contrib/db_pools"
|
2021-05-31 16:15:00 +00:00
|
|
|
readme = "../README.md"
|
|
|
|
keywords = ["rocket", "framework", "database", "pools"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2022-03-19 18:25:24 +00:00
|
|
|
edition = "2021"
|
2024-01-30 17:18:40 +00:00
|
|
|
rust-version = "1.75"
|
2021-05-31 16:15:00 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2024-05-20 18:39:14 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2021-05-31 16:15:00 +00:00
|
|
|
[dependencies]
|
2023-03-23 02:30:26 +00:00
|
|
|
devise = "0.4"
|
2021-05-31 16:15:00 +00:00
|
|
|
quote = "1"
|
2021-07-09 23:34:54 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rocket = { path = "../../../core/lib", default-features = false }
|
|
|
|
rocket_db_pools = { path = "../lib", features = ["deadpool_postgres"] }
|
2021-07-18 20:14:13 +00:00
|
|
|
trybuild = "1.0"
|
|
|
|
version_check = "0.9"
|