2019-11-01 05:01:42 +00:00
|
|
|
[package]
|
|
|
|
name = "sqlx-macros"
|
2020-05-06 10:27:47 +00:00
|
|
|
version = "0.3.5"
|
2019-12-28 08:25:04 +00:00
|
|
|
repository = "https://github.com/launchbadge/sqlx"
|
|
|
|
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
2019-12-28 10:44:32 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-11-01 05:01:42 +00:00
|
|
|
edition = "2018"
|
2019-12-28 01:31:01 +00:00
|
|
|
authors = [
|
2019-12-28 08:36:37 +00:00
|
|
|
"Ryan Leckey <leckey.ryan@gmail.com>", # ryan@launchbadge.com
|
|
|
|
"Austin Bonander <austin.bonander@gmail.com>", # austin@launchbadge.com
|
|
|
|
"Zachery Gyurkovitz <zgyurkovitz@gmail.com>", # zach@launchbadge.com
|
|
|
|
"Daniel Akhterov <akhterovd@gmail.com>", # daniel@launchbadge.com
|
2019-12-28 01:31:01 +00:00
|
|
|
]
|
2019-11-01 05:01:42 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2019-11-04 22:23:00 +00:00
|
|
|
[features]
|
2020-01-16 20:20:20 +00:00
|
|
|
default = [ "runtime-async-std" ]
|
2019-12-28 01:31:01 +00:00
|
|
|
|
2020-04-14 06:00:19 +00:00
|
|
|
runtime-async-std = [ "sqlx-core/runtime-async-std", "async-std" ]
|
|
|
|
runtime-tokio = [ "sqlx-core/runtime-tokio", "tokio", "once_cell" ]
|
|
|
|
|
|
|
|
# offline building support
|
|
|
|
offline = ["sqlx-core/offline", "serde", "serde_json", "hex", "sha2"]
|
2020-01-15 09:54:46 +00:00
|
|
|
|
2019-12-28 01:31:01 +00:00
|
|
|
# database
|
2020-04-14 06:00:19 +00:00
|
|
|
mysql = [ "sqlx-core/mysql" ]
|
|
|
|
postgres = [ "sqlx-core/postgres" ]
|
|
|
|
sqlite = [ "sqlx-core/sqlite" ]
|
2019-12-28 01:31:01 +00:00
|
|
|
|
|
|
|
# type
|
2020-04-14 06:00:19 +00:00
|
|
|
bigdecimal = [ "sqlx-core/bigdecimal" ]
|
|
|
|
chrono = [ "sqlx-core/chrono" ]
|
|
|
|
time = [ "sqlx-core/time" ]
|
|
|
|
ipnetwork = [ "sqlx-core/ipnetwork" ]
|
|
|
|
uuid = [ "sqlx-core/uuid" ]
|
|
|
|
json = [ "sqlx-core/json", "serde_json" ]
|
2019-12-28 01:31:01 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-03-02 08:29:52 +00:00
|
|
|
async-std = { version = "1.5.0", default-features = false, optional = true }
|
|
|
|
tokio = { version = "0.2.13", default-features = false, features = [ "rt-threaded" ], optional = true }
|
2019-12-28 01:31:01 +00:00
|
|
|
dotenv = { version = "0.15.0", default-features = false }
|
2020-03-02 08:29:52 +00:00
|
|
|
futures = { version = "0.3.4", default-features = false, features = [ "executor" ] }
|
2020-04-14 06:00:19 +00:00
|
|
|
hex = { version = "0.4.2", optional = true }
|
2020-04-17 07:59:19 +00:00
|
|
|
heck = "0.3"
|
2020-03-02 08:29:52 +00:00
|
|
|
proc-macro2 = { version = "1.0.9", default-features = false }
|
2020-04-14 06:00:19 +00:00
|
|
|
sqlx-core = { version = "0.3.5", default-features = false, path = "../sqlx-core" }
|
|
|
|
serde = { version = "1.0", optional = true }
|
2020-05-13 03:19:25 +00:00
|
|
|
serde_json = { version = "1.0", features = [ "preserve_order" ], optional = true }
|
2020-04-14 06:00:19 +00:00
|
|
|
sha2 = { version = "0.8.1", optional = true }
|
2020-03-02 08:29:52 +00:00
|
|
|
syn = { version = "1.0.16", default-features = false, features = [ "full" ] }
|
2019-12-28 01:31:01 +00:00
|
|
|
quote = { version = "1.0.2", default-features = false }
|
2020-01-17 02:29:58 +00:00
|
|
|
url = { version = "2.1.1", default-features = false }
|
2020-04-14 06:00:19 +00:00
|
|
|
once_cell = { version = "1.3", features = ["std"], optional = true }
|