mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-11 06:54:18 +00:00
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "sqlx"
|
|
version = "0.1.1-pre"
|
|
authors = [
|
|
"Ryan Leckey <leckey.ryan@gmail.com>"
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Asynchronous and expressive database client in pure Rust."
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
postgres = []
|
|
mariadb = []
|
|
|
|
[dependencies]
|
|
async-stream = "0.1.0"
|
|
bitflags = "1.1.0"
|
|
byteorder = { version = "1.3.2", default-features = false }
|
|
bytes = "0.4.12"
|
|
crossbeam-queue = "0.1.2"
|
|
crossbeam-utils = { version = "0.6.6", default-features = false }
|
|
# 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 }
|
|
log = "0.4.8"
|
|
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"
|
|
|
|
[dev-dependencies]
|
|
matches = "0.1.8"
|
|
tokio = { version = "0.2.0-alpha.4", default-features = false, features = [ "rt-full" ] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[patch.crates-io]
|
|
async-stream = { git = "https://github.com/tokio-rs/async-stream" }
|