sqlx/sqlx-macros/Cargo.toml

59 lines
2.1 KiB
TOML
Raw Normal View History

2019-11-01 05:01:42 +00:00
[package]
name = "sqlx-macros"
2020-05-31 06:15:52 +00:00
version = "0.4.0-pre"
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
# runtimes
runtime-async-std = [ "sqlx-core/runtime-async-std", "sqlx-rt/runtime-async-std" ]
runtime-tokio = [ "sqlx-core/runtime-tokio", "sqlx-rt/runtime-tokio" ]
runtime-actix = [ "sqlx-core/runtime-actix", "sqlx-rt/runtime-actix" ]
# 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" ]
2020-06-07 23:29:46 +00:00
mssql = [ "sqlx-core/mssql" ]
2019-12-28 01:31:01 +00:00
# type
bigdecimal = [ "sqlx-core/bigdecimal" ]
2020-07-09 09:27:53 +00:00
decimal = [ "sqlx-core/decimal" ]
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]
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 }
2020-06-07 23:29:46 +00:00
heck = "0.3.1"
either = "1.5.3"
proc-macro2 = { version = "1.0.9", default-features = false }
2020-05-31 06:15:52 +00:00
sqlx-core = { version = "0.4.0-pre", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.1.0-pre", default-features = false, path = "../sqlx-rt" }
2020-06-07 23:29:46 +00:00
serde = { version = "1.0.111", optional = true }
serde_json = { version = "1.0.30", features = [ "preserve_order" ], optional = true }
sha2 = { version = "0.9.1", optional = true }
2020-06-07 23:29:46 +00:00
syn = { version = "1.0.30", default-features = false, features = [ "full" ] }
quote = { version = "1.0.6", default-features = false }
2020-01-17 02:29:58 +00:00
url = { version = "2.1.1", default-features = false }