sqlx/Cargo.toml

40 lines
982 B
TOML
Raw Normal View History

2019-06-06 06:02:55 -07:00
[package]
2019-06-22 20:54:43 -07:00
name = "sqlx"
version = "0.1.1-pre"
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
]
2019-06-06 06:02:55 -07:00
license = "MIT OR Apache-2.0"
description = "Asynchronous and expressive database client in pure Rust."
edition = "2018"
[features]
default = []
postgres = []
mariadb = []
2019-06-06 06:02:55 -07:00
[dependencies]
async-stream = "0.1.0"
bitflags = "1.1.0"
byteorder = { version = "1.3.2", default-features = false }
2019-06-07 15:34:21 -07:00
bytes = "0.4.12"
2019-08-08 08:24:17 -07:00
crossbeam-queue = "0.1.2"
crossbeam-utils = { version = "0.6.6", default-features = false }
2019-08-20 22:23:54 -07:00
failure = "0.1.5"
futures-channel-preview = "=0.3.0-alpha.18"
futures-core-preview = "=0.3.0-alpha.18"
futures-util-preview = "=0.3.0-alpha.18"
hex = { version = "0.3.2", default-features = false }
2019-08-06 07:19:06 -07:00
log = "0.4.8"
2019-07-25 23:41:50 -07:00
md-5 = "0.8.0"
memchr = "2.2.1"
tokio = { version = "=0.2.0-alpha.2", default-features = false, features = [ "tcp" ] }
url = "2.1.0"
2019-07-26 09:20:09 -07:00
[profile.release]
lto = true
codegen-units = 1
2019-08-19 12:25:01 -07:00
[patch.crates-io]
async-stream = { git = "https://github.com/tokio-rs/async-stream" }