This commit is contained in:
Bryan Stitt 2022-08-26 05:26:27 +00:00
parent 04dc716250
commit 101104ac5d
2 changed files with 10 additions and 10 deletions

18
Cargo.lock generated
View File

@ -3508,7 +3508,7 @@ dependencies = [
"postgres-protocol", "postgres-protocol",
"serde", "serde",
"serde_json", "serde_json",
"time 0.3.13", "time 0.3.14",
"uuid 1.1.2", "uuid 1.1.2",
] ]
@ -4148,7 +4148,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"sqlx", "sqlx",
"time 0.3.13", "time 0.3.14",
"tracing", "tracing",
"url", "url",
"uuid 1.1.2", "uuid 1.1.2",
@ -4212,7 +4212,7 @@ dependencies = [
"sea-query-derive", "sea-query-derive",
"sea-query-driver", "sea-query-driver",
"serde_json", "serde_json",
"time 0.3.13", "time 0.3.14",
"uuid 1.1.2", "uuid 1.1.2",
] ]
@ -4504,7 +4504,7 @@ dependencies = [
"rand 0.8.5", "rand 0.8.5",
"sha3 0.9.1", "sha3 0.9.1",
"thiserror", "thiserror",
"time 0.3.13", "time 0.3.14",
] ]
[[package]] [[package]]
@ -4648,7 +4648,7 @@ dependencies = [
"sqlx-rt", "sqlx-rt",
"stringprep", "stringprep",
"thiserror", "thiserror",
"time 0.3.13", "time 0.3.14",
"tokio-stream", "tokio-stream",
"url", "url",
"uuid 1.1.2", "uuid 1.1.2",
@ -4920,9 +4920,9 @@ dependencies = [
[[package]] [[package]]
name = "time" name = "time"
version = "0.3.13" version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db76ff9fa4b1458b3c7f077f3ff9887394058460d21e634355b273aaf11eea45" checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
dependencies = [ dependencies = [
"itoa 1.0.2", "itoa 1.0.2",
"libc", "libc",
@ -5566,7 +5566,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"siwe", "siwe",
"time 0.3.13", "time 0.3.14",
"tokio", "tokio",
"tokio-stream", "tokio-stream",
"toml", "toml",
@ -5762,7 +5762,7 @@ dependencies = [
"hmac", "hmac",
"pbkdf2 0.10.1", "pbkdf2 0.10.1",
"sha1", "sha1",
"time 0.3.13", "time 0.3.14",
"zstd", "zstd",
] ]

View File

@ -52,7 +52,7 @@ sea-orm = { version = "0.9.2", features = ["macros"] }
serde = { version = "1.0.144", features = [] } serde = { version = "1.0.144", features = [] }
serde_json = { version = "1.0.85", default-features = false, features = ["alloc", "raw_value"] } serde_json = { version = "1.0.85", default-features = false, features = ["alloc", "raw_value"] }
# TODO: make sure this time version matches siwe. PR to put this in their prelude # TODO: make sure this time version matches siwe. PR to put this in their prelude
time = "0.3.13" time = "0.3.14"
tokio = { version = "1.20.1", features = ["full", "tracing"] } tokio = { version = "1.20.1", features = ["full", "tracing"] }
# TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude # TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude
tokio-stream = { version = "0.1.9", features = ["sync"] } tokio-stream = { version = "0.1.9", features = ["sync"] }