sqlx/sqlx-macros/Cargo.toml

56 lines
2.1 KiB
TOML
Raw Normal View History

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
[features]
default = [ "runtime-async-std" ]
2019-12-28 01:31:01 +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
mysql = [ "sqlx-core/mysql" ]
postgres = [ "sqlx-core/postgres" ]
sqlite = [ "sqlx-core/sqlite" ]
2019-12-28 01:31:01 +00:00
# type
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]
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 }
futures = { version = "0.3.4", default-features = false, features = [ "executor" ] }
hex = { version = "0.4.2", optional = true }
heck = "0.3"
proc-macro2 = { version = "1.0.9", default-features = false }
sqlx-core = { version = "0.3.5", default-features = false, path = "../sqlx-core" }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", features = [ "preserve_order" ], optional = true }
sha2 = { version = "0.8.1", optional = true }
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 }
once_cell = { version = "1.3", features = ["std"], optional = true }