Bump deps to: sqlx-0.8.1, tower-0.5.0, reqwest-0.12.7, ron-0.8.1, heck-0.5.0

This commit is contained in:
Andrey Brusnik 2024-08-24 16:54:49 +04:00
parent 0c0a024cec
commit 5d93b81ea0
No known key found for this signature in database
GPG key ID: D33232F28CFF442C
4 changed files with 314 additions and 213 deletions

515
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -53,7 +53,7 @@ tokio = { version = "1.12.0", features = ["fs"] }
tokio-util = { version = "0.7.0", features = ["codec"] } tokio-util = { version = "0.7.0", features = ["codec"] }
pin-project = "1.0.12" pin-project = "1.0.12"
bytes = "1.0.0" bytes = "1.0.0"
reqwest = { version = "0.11.10", features = [ reqwest = { version = "0.12.7", features = [
"json", "json",
"stream", "stream",
"multipart", "multipart",
@ -91,7 +91,7 @@ tokio = { version = "1.8.0", features = [
cool_asserts = "2.0.3" cool_asserts = "2.0.3"
xshell = "0.2" xshell = "0.2"
ron = "0.7" ron = "0.8.1"
indexmap = { version = "1.9", features = ["serde-1"] } indexmap = { version = "1.9", features = ["serde-1"] }
aho-corasick = "0.7" aho-corasick = "0.7"
itertools = "0.10" itertools = "0.10"

View file

@ -20,7 +20,7 @@ proc-macro = true
quote = "1.0.7" quote = "1.0.7"
proc-macro2 = "1.0.67" proc-macro2 = "1.0.67"
syn = { version = "1.0.13", features = ["full", "extra-traits"] } syn = { version = "1.0.13", features = ["full", "extra-traits"] }
heck = "0.4.0" heck = "0.5.0"
[package.metadata.release] [package.metadata.release]
tag-prefix = "macros-" tag-prefix = "macros-"

View file

@ -105,7 +105,7 @@ pin-project = "1.0"
aquamarine = "0.5.0" aquamarine = "0.5.0"
either = "1.9.0" either = "1.9.0"
sqlx = { version = "0.7.3", optional = true, default-features = false, features = [ sqlx = { version = "0.8.1", optional = true, default-features = false, features = [
"macros", "macros",
"sqlite", "sqlite",
"postgres" "postgres"
@ -114,7 +114,7 @@ deadpool-redis = { version = "0.14", features = ["rt_tokio_1"], optional = true
serde_cbor = { version = "0.11", optional = true } serde_cbor = { version = "0.11", optional = true }
bincode = { version = "1.3", optional = true } bincode = { version = "1.3", optional = true }
axum = { version = "0.7.0", optional = true } axum = { version = "0.7.0", optional = true }
tower = { version = "0.4.13", optional = true } tower = { version = "0.5.0", optional = true }
tower-http = { version = "0.5.2", features = ["trace"], optional = true } tower-http = { version = "0.5.2", features = ["trace"], optional = true }
rand = { version = "0.8.5", optional = true } rand = { version = "0.8.5", optional = true }
@ -124,7 +124,7 @@ pretty_env_logger = "0.5.0"
serde = "1" serde = "1"
serde_json = "1" serde_json = "1"
tokio = { version = "1.8", features = ["fs", "rt-multi-thread", "macros"] } tokio = { version = "1.8", features = ["fs", "rt-multi-thread", "macros"] }
reqwest = "0.11.11" reqwest = "0.12.7"
chrono = "0.4" chrono = "0.4"
tokio-stream = "0.1" tokio-stream = "0.1"