mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
19 lines
551 B
TOML
19 lines
551 B
TOML
[package]
|
|
name = "sqlx-example-quickstart"
|
|
version = "0.0.0"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"LaunchBadge <contact@launchbadge.com>"
|
|
]
|
|
|
|
[dependencies]
|
|
actix-web = "3.3.2"
|
|
anyhow = "1.0.36"
|
|
async-std = { version = "1.8.0", features = ["attributes"] }
|
|
#sqlx = { path = "../../sqlx", features = ["tokio", "mysql", "blocking", "async-std", "actix"] }
|
|
sqlx = { path = "../../sqlx", features = ["tokio", "mysql"] }
|
|
tokio = { version = "1.0.1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
log = "0.4"
|
|
env_logger = "0.8.2"
|