examples/mysql/todos/Cargo.toml: Add runtime feature

This commit is contained in:
Mike Cronce 2020-12-07 13:56:19 -05:00 committed by Ryan Leckey
parent 376ea3f596
commit ff05ad9a10

View File

@ -9,5 +9,5 @@ anyhow = "1.0"
async-std = { version = "1.5.0", features = [ "attributes" ] }
futures = "0.3"
paw = "1.0"
sqlx = { path = "../../../", features = [ "mysql" ] }
sqlx = { path = "../../../", features = [ "mysql", "runtime-async-std-rustls" ] }
structopt = { version = "0.3", features = [ "paw" ] }