mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-15 00:27:41 +00:00
24 lines
479 B
TOML
24 lines
479 B
TOML
[package]
|
|
name = "sqlx-macros"
|
|
version = "0.1.0"
|
|
authors = ["Austin Bonander <austin.bonander@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
async-std = "1.1.0"
|
|
dotenv = "0.15.0"
|
|
futures = "0.3.1"
|
|
proc-macro-hack = "0.5"
|
|
proc-macro2 = "1.0.6"
|
|
sqlx = { version = "0.1.1-pre", path = "../sqlx-core", package = "sqlx-core" }
|
|
syn = "1.0.8"
|
|
quote = "1.0.2"
|
|
url = "2.1.0"
|
|
|
|
[features]
|
|
mariadb = ["sqlx/mariadb"]
|
|
postgres = ["sqlx/postgres"]
|
|
uuid = ["sqlx/uuid"]
|