sqlx/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2019-06-06 13:02:55 +00:00
[package]
2019-06-23 03:54:43 +00:00
name = "sqlx"
version = "0.1.1-pre"
2019-06-06 13:02:55 +00:00
license = "MIT OR Apache-2.0"
2019-09-11 06:31:12 +00:00
description = "The Rust SQL Toolkit."
2019-06-06 13:02:55 +00:00
edition = "2018"
2019-11-20 17:05:21 +00:00
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
]
2019-06-06 13:02:55 +00:00
[features]
default = []
unstable = []
postgres = []
mariadb = []
2019-06-06 13:02:55 +00:00
[dependencies]
async-stream = "0.1.1"
async-trait = "0.1.11"
bitflags = "1.1.0"
byteorder = { version = "1.3.2", default-features = false }
2019-06-07 22:34:21 +00:00
bytes = "0.4.12"
2019-08-08 15:24:17 +00:00
crossbeam-queue = "0.1.2"
crossbeam-utils = { version = "0.6.6", default-features = false }
futures-channel-preview = "0.3.0-alpha.18"
futures-core-preview = "0.3.0-alpha.18"
futures-util-preview = "0.3.0-alpha.18"
2019-08-06 14:19:06 +00:00
log = "0.4.8"
2019-07-26 06:41:50 +00:00
md-5 = "0.8.0"
memchr = "2.2.1"
tokio = { version = "0.2.0-alpha.4", default-features = false, features = [ "tcp" ] }
url = "2.1.0"
uuid = { version = "0.8.1", optional = true }
2019-07-26 16:20:09 +00:00
[dev-dependencies]
matches = "0.1.8"
tokio = { version = "0.2.0-alpha.4", default-features = false, features = [ "rt-full" ] }
2019-11-01 05:01:42 +00:00
sqlx-macros = { path = "sqlx-macros/" }
[profile.release]
lto = true
codegen-units = 1
[[test]]
name = "sql-macro-test"
required-features = ["uuid"]