Update versions

This commit is contained in:
LeNei
2024-02-03 22:26:44 +01:00
parent cc4d0d7ba1
commit f1b2f9b5d3
4 changed files with 252 additions and 196 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "axum-sqlx-template"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["LeNei <leonmarc.neisskenwirth@gmail.com>"]
@@ -13,10 +13,17 @@ path = "src/main.rs"
name = "api"
[dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
sqlx = { version = "0.7.1", default-features = false, features = ["runtime-tokio-rustls", "macros", "postgres", "uuid", "chrono", "migrate"] }
sqlx = { version = "0.7.3", default-features = false, features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
] }
chrono = { version = "0.4.22", features = ["serde"] }
secrecy = { version = "0.8", features = ["serde"] }
config = { version = "0.13", default-features = false, features = ["yaml"] }
@@ -26,8 +33,8 @@ tracing = "0.1.19"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-bunyan-formatter = "0.3"
tracing-log = "0.1.1"
axum = { version = "0.6.14", features = ["tracing"] }
tower-http = { version = "0.4.0", features = ["trace", "cors"] }
http = "0.2"
hyper = { version = "0.14", features = ["full"] }
axum = { version = "0.7.4", features = ["tracing"] }
tower-http = { version = "0.5.1", features = ["trace", "cors"] }
http = "1.0.0"
hyper = { version = "1.1.0", features = ["full"] }
anyhow = "1.0"