mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-03-13 17:27:50 +00:00
* macros: Reduce I/O by doing all .env and environment variable reading inside a Lazy initializer. * Use the default runtime and TLS backend for all examples Before, rust-analyzer was always hitting the "only one runtime can be enabled" compile_error in sqlx-rt.
14 lines
365 B
TOML
14 lines
365 B
TOML
[package]
|
|
name = "sqlx-example-mysql-todos"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
workspace = "../../../"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-std = { version = "1.8.0", features = [ "attributes" ] }
|
|
futures = "0.3"
|
|
paw = "1.0"
|
|
sqlx = { path = "../../../", features = [ "mysql", "runtime-async-std-native-tls" ] }
|
|
structopt = { version = "0.3", features = [ "paw" ] }
|