Try and trim down the features a bit

This commit is contained in:
Ryan Leckey 2019-12-03 00:14:59 -08:00
parent 9558ab1c50
commit f16c805f4c
2 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@ postgres = []
mariadb = []
[dependencies]
async-std = { version = "1.2.0", features = ["attributes", "unstable"] }
async-std = { version = "1.2.0", default-features = false, features = [ "unstable" ] }
async-stream = "0.2.0"
bitflags = "1.2.1"
byteorder = { version = "1.3.2", default-features = false }
@ -32,3 +32,4 @@ uuid = { version = "0.8.1", optional = true }
[dev-dependencies]
matches = "0.1.8"
bytes = "0.5.2"
async-std = { version = "1.2.0", default-features = false, features = [ "attributes" ] }

View File

@ -14,7 +14,7 @@ futures = "0.3.1"
proc-macro-hack = "0.5.11"
proc-macro2 = "1.0.6"
sqlx = { version = "0.1.0-pre", path = "../sqlx-core", package = "sqlx-core" }
syn = "1.0.11"
syn = { version = "1.0.11", default-features = false }
quote = "1.0.2"
url = "2.1.0"