cargo upgrade
This commit is contained in:
parent
e0f700189b
commit
6be05bab4b
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -148,9 +148,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "anyhow"
|
||||
version = "1.0.74"
|
||||
version = "1.0.75"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8c6f84b74db2535ebae81eede2f39b947dcbf01d093ae5f791e5dd414a1bf289"
|
||||
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
]
|
||||
@ -6440,9 +6440,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
||||
|
||||
[[package]]
|
||||
name = "tokio"
|
||||
version = "1.31.0"
|
||||
version = "1.32.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "40de3a2ba249dcb097e01be5e67a5ff53cf250397715a071a81543e8a832a920"
|
||||
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"bytes",
|
||||
|
@ -7,9 +7,9 @@ edition = "2021"
|
||||
[dependencies]
|
||||
redis-rate-limiter = { path = "../redis-rate-limiter" }
|
||||
|
||||
anyhow = "1.0.74"
|
||||
anyhow = "1.0.75"
|
||||
hashbrown = "0.14.0"
|
||||
log = "0.4.20"
|
||||
moka = { version = "0.11.3", features = ["future"] }
|
||||
tokio = "1.31.0"
|
||||
tokio = "1.32.0"
|
||||
tracing = "0.1.37"
|
||||
|
@ -9,9 +9,9 @@ edition = "2021"
|
||||
log = "0.4.20"
|
||||
portable-atomic = { version = "1.4.2", features = ["float"] }
|
||||
serde = { version = "1.0.183", features = [] }
|
||||
tokio = { version = "1.31.0", features = ["full"] }
|
||||
tokio = { version = "1.32.0", features = ["full"] }
|
||||
tracing = "0.1.37"
|
||||
watermill = "0.1.1"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.31.0", features = ["full", "test-util"] }
|
||||
tokio = { version = "1.32.0", features = ["full", "test-util"] }
|
||||
|
@ -9,7 +9,7 @@ name = "migration"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.31.0", features = ["full", "tracing"] }
|
||||
tokio = { version = "1.32.0", features = ["full", "tracing"] }
|
||||
chrono = "0.4.26"
|
||||
sea-orm = { version = "0.12.2", features = ["with-chrono"]}
|
||||
|
||||
|
@ -5,4 +5,4 @@ authors = ["Bryan Stitt <bryan@llamanodes.com>"]
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.31.0", features = ["time"] }
|
||||
tokio = { version = "1.32.0", features = ["time"] }
|
||||
|
@ -5,7 +5,7 @@ authors = ["Bryan Stitt <bryan@stitthappens.com>"]
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.74"
|
||||
anyhow = "1.0.75"
|
||||
chrono = "0.4.26"
|
||||
deadpool-redis = { version = "0.12.0", features = ["rt_tokio_1", "serde"] }
|
||||
tokio = "1.31.0"
|
||||
tokio = "1.32.0"
|
||||
|
@ -34,7 +34,7 @@ siwe = { git = "https://github.com/llamanodes/siwe-rs", rev = "013be5204ff1c8577
|
||||
# TODO: import chrono from sea-orm so we always have the same version
|
||||
# TODO: make sure this time version matches siwe. PR to put this in their prelude
|
||||
|
||||
anyhow = { version = "1.0.74", features = ["backtrace"] }
|
||||
anyhow = { version = "1.0.75", features = ["backtrace"] }
|
||||
arc-swap = { version = "1.6.0" }
|
||||
argh = "0.1.12"
|
||||
async-stripe = { version = "0.22.2", default-features = false, features = ["billing", "checkout", "connect", "runtime-tokio-hyper-rustls", "webhook-events"] }
|
||||
@ -87,7 +87,7 @@ serde_prometheus = "0.2.3"
|
||||
strum = { version = "0.25.0", features = ["derive"] }
|
||||
time_01 = { package = "time", version = "0.1.45" }
|
||||
time_03 = { package = "time", version = "0.3" }
|
||||
tokio = { version = "1.31.0", features = ["full", "tracing"] }
|
||||
tokio = { version = "1.32.0", features = ["full", "tracing"] }
|
||||
tokio-console = { version = "0.1.9", optional = true }
|
||||
tokio-stream = { version = "0.1.14", features = ["sync"] }
|
||||
toml = "0.7.6"
|
||||
@ -104,6 +104,6 @@ test-log = { version = "0.2.12", default-features = false, features = ["trace"]
|
||||
[dev-dependencies]
|
||||
env_logger = "0.10"
|
||||
test-log = "0.2.12"
|
||||
tokio = { version = "1.31.0", features = ["full", "test-util"] }
|
||||
tokio = { version = "1.32.0", features = ["full", "test-util"] }
|
||||
tracing = {version = "0.1", default-features = false}
|
||||
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
|
||||
|
@ -28,6 +28,6 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
[dev-dependencies]
|
||||
env_logger = "0.10"
|
||||
test-log = "0.2.12"
|
||||
tokio = { version = "1.31.0", features = ["full", "test-util"] }
|
||||
tokio = { version = "1.32.0", features = ["full", "test-util"] }
|
||||
tracing = {version = "0.1", default-features = false}
|
||||
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
|
||||
|
Loading…
Reference in New Issue
Block a user