mirror of https://github.com/rwf2/Rocket.git
25 lines
681 B
TOML
25 lines
681 B
TOML
[package]
|
|
name = "rocket_db_pools_codegen"
|
|
version = "0.1.0"
|
|
authors = ["Sergio Benitez <sb@sergio.bz>", "Jeb Rosen <jeb@jebrosen.com>"]
|
|
description = "Procedural macros for rocket_db_pools."
|
|
repository = "https://github.com/rwf2/Rocket/tree/master/contrib/db_pools"
|
|
readme = "../README.md"
|
|
keywords = ["rocket", "framework", "database", "pools"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.64"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
devise = "0.4"
|
|
quote = "1"
|
|
|
|
[dev-dependencies]
|
|
rocket = { path = "../../../core/lib", default-features = false }
|
|
rocket_db_pools = { path = "../lib", features = ["deadpool_postgres"] }
|
|
trybuild = "1.0"
|
|
version_check = "0.9"
|