chore: update sqlx to 0.7.0-alpha3

This commit is contained in:
Felipe 2023-05-22 20:49:08 -04:00
parent 888858690f
commit 4687cf3640
Signed by: pitbuster
SSH key fingerprint: SHA256:HDYu2Pm4/TmSX8GBwV49UvFWr1Ljg8XlHxKeCpjJpOk
2 changed files with 581 additions and 274 deletions

847
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -11,15 +11,11 @@ links = "sqlite"
axum = "0.6.12" axum = "0.6.12"
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tokio = { version = "1.27.0", features = ["macros", "signal"] } tokio = { version = "1.27.0", features = ["macros", "signal", "rt-multi-thread"] }
dotenvy = "0.15.7" dotenvy = "0.15.7"
tower-http = { version = "0.4.0", features = ["fs"] } tower-http = { version = "0.4.0", features = ["fs"] }
serde = { version = "1.0.159", features = ["derive"] } serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95" serde_json = "1.0.95"
futures = "0.3.28" futures = "0.3.28"
axum-test-helper = "0.2.0" axum-test-helper = "0.2.0"
sqlx ={ version = "0.7.0-alpha.3", default-features = false, features = ["runtime-tokio", "tls-rustls", "macros", "migrate", "sqlite"] }
[dependencies.sqlx]
version = "0.6.3"
default-features = false
features = ["runtime-tokio-native-tls", "macros", "offline", "migrate", "sqlite"]