sqlx/Cargo.toml

39 lines
779 B
TOML
Raw Normal View History

[workspace]
members = [
".",
2019-08-08 15:24:17 +00:00
"examples/todo",
"examples/contacts"
]
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"
[features]
default = []
postgres = []
mariadb = []
2019-06-06 13:02:55 +00:00
[dependencies]
2019-08-07 04:44:43 +00:00
bitflags = "1.1.0"
2019-07-26 06:41:50 +00:00
byteorder = "1.3.2"
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-07 04:44:43 +00:00
enum-tryfrom = "0.2.1"
enum-tryfrom-derive = "0.2.1"
failure = "0.1.5"
futures-preview = "=0.3.0-alpha.17"
2019-07-26 06:41:50 +00:00
hex = "0.3.2"
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"
memchr = "2.2.1"
2019-08-07 04:33:35 +00:00
runtime = { version = "=0.3.0-alpha.6", default-features = false }
2019-07-26 16:20:09 +00:00
[dev-dependencies]
runtime = { version = "=0.3.0-alpha.6", default-features = true }