2019-08-07 05:28:06 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
2019-08-10 04:46:49 +00:00
|
|
|
"examples/todos",
|
2019-08-08 15:24:17 +00:00
|
|
|
"examples/contacts"
|
2019-08-07 05:28:06 +00:00
|
|
|
]
|
|
|
|
|
2019-06-06 13:02:55 +00:00
|
|
|
[package]
|
2019-06-23 03:54:43 +00:00
|
|
|
name = "sqlx"
|
2019-06-07 22:34:21 +00:00
|
|
|
version = "0.0.0"
|
2019-06-06 13:02:55 +00:00
|
|
|
authors = ["Ryan Leckey <leckey.ryan@gmail.com>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "Asynchronous and expressive database client in pure Rust."
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-08-07 06:20:50 +00:00
|
|
|
[features]
|
2019-08-16 06:03:25 +00:00
|
|
|
default = ["postgres"]
|
2019-08-07 06:20:50 +00:00
|
|
|
postgres = []
|
|
|
|
mariadb = []
|
|
|
|
|
2019-06-06 13:02:55 +00:00
|
|
|
[dependencies]
|
2019-08-21 05:33:53 +00:00
|
|
|
bitflags = "1.1.0"
|
2019-08-21 02:45:42 +00:00
|
|
|
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"
|
2019-08-21 02:45:42 +00:00
|
|
|
crossbeam-utils = { version = "0.6.6", default-features = false }
|
2019-08-21 05:23:54 +00:00
|
|
|
failure = "0.1.5"
|
2019-08-21 02:45:42 +00:00
|
|
|
futures-util-preview = "=0.3.0-alpha.18"
|
|
|
|
futures-channel-preview = "=0.3.0-alpha.18"
|
|
|
|
futures-core-preview = "=0.3.0-alpha.18"
|
|
|
|
hex = { version = "0.3.2", default-features = false }
|
|
|
|
# itoa = "0.4.4"
|
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"
|
2019-08-10 04:46:49 +00:00
|
|
|
url = "2.1.0"
|
2019-07-26 06:41:50 +00:00
|
|
|
memchr = "2.2.1"
|
2019-08-16 06:03:25 +00:00
|
|
|
async-stream = "0.1.0"
|
2019-08-21 02:45:42 +00:00
|
|
|
tokio = { version = "=0.2.0-alpha.2", default-features = false, features = [ "tcp" ] }
|
2019-07-26 16:20:09 +00:00
|
|
|
|
2019-08-16 06:03:25 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
2019-08-19 19:25:01 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
async-stream = { git = "https://github.com/tokio-rs/async-stream" }
|