Skip to content

Commit fe98b0b

Browse files
committed
Turn on neccessary feature flags of futures-channel and async-std
1 parent 59e12ba commit fe98b0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sqlx-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-core"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -22,7 +22,7 @@ postgres = [ "md-5", "sha2", "base64", "sha-1", "rand", "hmac" ]
2222
mysql = [ "sha-1", "sha2", "generic-array", "num-bigint", "base64", "digest", "rand" ]
2323

2424
[dependencies]
25-
async-std = { version = "1.4.0", default-features = false }
25+
async-std = "1.4.0"
2626
async-stream = { version = "0.2.0", default-features = false }
2727
base64 = { version = "0.11.0", default-features = false, optional = true, features = [ "std" ] }
2828
bitflags = { version = "1.2.1", default-features = false }
@@ -31,7 +31,7 @@ crossbeam-queue = "0.2.1"
3131
crossbeam-utils = { version = "0.7.0", default-features = false }
3232
chrono = { version = "0.4.10", default-features = false, features = [ "clock" ], optional = true }
3333
digest = { version = "0.8.1", default-features = false, optional = true, features = [ "std" ] }
34-
futures-channel = { version = "0.3.1", default-features = false }
34+
futures-channel = { version = "0.3.1", default-features = false, features = [ "alloc" ] }
3535
futures-core = { version = "0.3.1", default-features = false }
3636
futures-util = { version = "0.3.1", default-features = false }
3737
# generic-array must match version that digest crates use

0 commit comments

Comments
 (0)