update all cargo packages'
This commit is contained in:
parent
be38bb6b5f
commit
e805a4ca5a
5 changed files with 995 additions and 717 deletions
1646
Cargo.lock
generated
1646
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,4 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = ["services/*"]
|
||||||
"services/*",
|
exclude = ["hack/codegen"]
|
||||||
]
|
resolver = "2"
|
||||||
exclude = [
|
|
||||||
"hack/codegen",
|
|
||||||
]
|
|
||||||
|
|
|
@ -6,19 +6,24 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde_json = "1.0.96"
|
serde_json = "1.0.105"
|
||||||
serde = "1.0.163"
|
serde = "1.0.188"
|
||||||
async-graphql = { version = "5.0.8", features = ["chrono"] }
|
async-graphql = { version = "6.0.5", features = ["chrono"] }
|
||||||
axum = "0.6.18"
|
axum = "0.6.20"
|
||||||
sqlx = { version = "0.6.3", default_features = false, features = [ "runtime-tokio-rustls", "postgres", "chrono" ] }
|
sqlx = { version = "0.7.1", default_features = false, features = [
|
||||||
|
"runtime-tokio-rustls",
|
||||||
|
"postgres",
|
||||||
|
"chrono",
|
||||||
|
] }
|
||||||
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
|
||||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
tower-http = { version = "0.4.4", features = ["cors"] }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
reqwest = { version = "0.11.18", features = ["rustls-tls-webpki-roots", "rustls"] }
|
reqwest = { version = "0.11.20", features = [
|
||||||
chrono = "0.4.24"
|
"rustls-tls-webpki-roots",
|
||||||
|
"rustls",
|
||||||
|
] }
|
||||||
|
chrono = "0.4.28"
|
||||||
|
|
||||||
[dependencies.openssl]
|
[dependencies.openssl]
|
||||||
version = "0.10.52"
|
version = "0.10.57"
|
||||||
features = [
|
features = ["vendored"]
|
||||||
"vendored"
|
|
||||||
]
|
|
||||||
|
|
|
@ -6,7 +6,10 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
|
||||||
sqlx = { version = "0.6.3", default_features = false, features = [ "runtime-tokio-rustls" , "postgres" ] }
|
sqlx = { version = "0.7.1", default_features = false, features = [
|
||||||
|
"runtime-tokio-rustls",
|
||||||
|
"postgres",
|
||||||
|
] }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
async_once = "0.2.6"
|
async_once = "0.2.6"
|
||||||
|
|
|
@ -7,14 +7,19 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
tokio-tungstenite = { version = "0.19.0", features=["rustls-tls-webpki-roots"] }
|
tokio-tungstenite = { version = "0.20.0", features = [
|
||||||
serde = { version = "1.0.163", features = ["derive"] }
|
"rustls-tls-webpki-roots",
|
||||||
serde_json = "1.0.96"
|
] }
|
||||||
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
|
serde = { version = "1.0.188", features = ["derive"] }
|
||||||
sqlx = { version = "0.6.3", default_features = false, features = [ "runtime-tokio-rustls" , "postgres" ] }
|
serde_json = "1.0.105"
|
||||||
url = "2.3.1"
|
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
|
||||||
|
sqlx = { version = "0.7.1", default_features = false, features = [
|
||||||
|
"runtime-tokio-rustls",
|
||||||
|
"postgres",
|
||||||
|
] }
|
||||||
|
url = "2.4.1"
|
||||||
futures-util = "0.3.28"
|
futures-util = "0.3.28"
|
||||||
futures = "0.3.28"
|
futures = "0.3.28"
|
||||||
async_once = "0.2.6"
|
async_once = "0.2.6"
|
||||||
serde-aux = "4.2.0"
|
serde-aux = "4.2.0"
|
||||||
axum = "0.6.18"
|
axum = "0.6.20"
|
||||||
|
|
Loading…
Add table
Reference in a new issue