2019-11-22 10:30:16 +00:00
|
|
|
[package]
|
|
|
|
name = "sqlx-core"
|
2020-03-10 22:40:33 +00:00
|
|
|
version = "0.2.6"
|
2019-12-28 08:25:04 +00:00
|
|
|
repository = "https://github.com/launchbadge/sqlx"
|
|
|
|
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
|
2019-11-22 10:30:16 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
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-11-22 10:30:16 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[features]
|
2020-01-16 20:20:20 +00:00
|
|
|
default = [ "runtime-async-std" ]
|
2019-11-22 10:30:16 +00:00
|
|
|
unstable = []
|
2020-01-11 00:38:44 +00:00
|
|
|
postgres = [ "md-5", "sha2", "base64", "sha-1", "rand", "hmac" ]
|
2019-12-31 22:16:48 +00:00
|
|
|
mysql = [ "sha-1", "sha2", "generic-array", "num-bigint", "base64", "digest", "rand" ]
|
2020-03-14 21:57:26 +00:00
|
|
|
sqlite = [ "libsqlite3-sys" ]
|
2020-01-15 09:17:33 +00:00
|
|
|
tls = [ "async-native-tls" ]
|
|
|
|
runtime-async-std = [ "async-native-tls/runtime-async-std", "async-std" ]
|
|
|
|
runtime-tokio = [ "async-native-tls/runtime-tokio", "tokio" ]
|
2019-11-22 10:30:16 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-01-17 02:29:58 +00:00
|
|
|
async-native-tls = { version = "0.3.2", default-features = false, optional = true }
|
2020-03-11 18:01:17 +00:00
|
|
|
async-std = { version = "1.5.0", features = [ "unstable" ], optional = true }
|
2020-03-02 08:29:52 +00:00
|
|
|
async-stream = { version = "0.2.1", default-features = false }
|
2019-12-31 22:16:48 +00:00
|
|
|
base64 = { version = "0.11.0", default-features = false, optional = true, features = [ "std" ] }
|
2019-12-28 01:31:01 +00:00
|
|
|
bitflags = { version = "1.2.1", default-features = false }
|
2020-03-02 08:29:52 +00:00
|
|
|
byteorder = { version = "1.3.4", default-features = false, features = [ "std" ] }
|
2019-12-31 22:16:48 +00:00
|
|
|
chrono = { version = "0.4.10", default-features = false, features = [ "clock" ], optional = true }
|
2020-03-02 08:29:52 +00:00
|
|
|
crossbeam-queue = "0.2.1"
|
|
|
|
crossbeam-utils = { version = "0.7.2", default-features = false }
|
2019-12-31 22:16:48 +00:00
|
|
|
digest = { version = "0.8.1", default-features = false, optional = true, features = [ "std" ] }
|
2020-02-22 03:43:28 +00:00
|
|
|
futures-channel = { version = "0.3.4", default-features = false, features = [ "alloc" ] }
|
|
|
|
futures-core = { version = "0.3.4", default-features = false }
|
|
|
|
futures-util = { version = "0.3.4", default-features = false }
|
2020-01-11 11:35:38 +00:00
|
|
|
generic-array = { version = "0.12.3", default-features = false, optional = true }
|
2020-03-02 08:29:52 +00:00
|
|
|
hex = "0.4.2"
|
|
|
|
hmac = { version = "0.7.1", default-features = false, optional = true }
|
2019-12-28 12:02:52 +00:00
|
|
|
log = { version = "0.4.8", default-features = false }
|
2019-12-31 22:16:48 +00:00
|
|
|
md-5 = { version = "0.8.0", default-features = false, optional = true }
|
2020-03-02 08:29:52 +00:00
|
|
|
memchr = { version = "2.3.3", default-features = false }
|
|
|
|
num-bigint = { version = "0.2.6", default-features = false, optional = true, features = [ "std" ] }
|
2020-01-21 23:53:07 +00:00
|
|
|
percent-encoding = "2.1.0"
|
2020-01-17 02:29:58 +00:00
|
|
|
rand = { version = "0.7.3", default-features = false, optional = true, features = [ "std" ] }
|
|
|
|
sha-1 = { version = "0.8.2", default-features = false, optional = true }
|
|
|
|
sha2 = { version = "0.8.1", default-features = false, optional = true }
|
2020-03-02 08:29:52 +00:00
|
|
|
tokio = { version = "0.2.13", default-features = false, features = [ "dns", "fs", "time", "tcp" ], optional = true }
|
2020-01-17 02:29:58 +00:00
|
|
|
url = { version = "2.1.1", default-features = false }
|
2020-03-01 03:30:21 +00:00
|
|
|
uuid = { version = "0.8.1", default-features = false, optional = true, features = [ "std" ] }
|
2020-03-11 18:01:17 +00:00
|
|
|
|
|
|
|
# <https://github.com/jgallagher/rusqlite/tree/master/libsqlite3-sys>
|
|
|
|
[dependencies.libsqlite3-sys]
|
|
|
|
version = "0.17.1"
|
|
|
|
optional = true
|
|
|
|
default-features = false
|
|
|
|
features = [ "pkg-config", "vcpkg", "bundled" ]
|
2019-11-22 10:30:16 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-01-29 21:00:51 +00:00
|
|
|
matches = "0.1.8"
|