fix: fixes for full mongo implementation

This commit is contained in:
Paul Makles
2022-02-11 21:44:59 +00:00
parent 7a9adb45f7
commit 4801b51cef
15 changed files with 45 additions and 36 deletions

25
Cargo.lock generated
View File

@@ -1318,7 +1318,7 @@ checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
dependencies = [
"bytes 1.1.0",
"fnv",
"itoa",
"itoa 0.4.8",
]
[[package]]
@@ -1384,7 +1384,7 @@ dependencies = [
"http-body 0.3.1",
"httparse",
"httpdate 0.3.2",
"itoa",
"itoa 0.4.8",
"pin-project",
"socket2 0.3.19",
"tokio 0.2.25",
@@ -1408,7 +1408,7 @@ dependencies = [
"http-body 0.4.3",
"httparse",
"httpdate 1.0.1",
"itoa",
"itoa 0.4.8",
"pin-project-lite 0.2.7",
"socket2 0.4.2",
"tokio 1.11.0",
@@ -1540,6 +1540,12 @@ version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[package]]
name = "js-sys"
version = "0.3.55"
@@ -2761,7 +2767,7 @@ dependencies = [
"combine",
"dtoa",
"futures-util",
"itoa",
"itoa 0.4.8",
"percent-encoding",
"pin-project-lite 0.2.7",
"sha1",
@@ -2782,7 +2788,7 @@ dependencies = [
"combine",
"dtoa",
"futures-util",
"itoa",
"itoa 0.4.8",
"percent-encoding",
"pin-project-lite 0.2.7",
"sha1",
@@ -2956,6 +2962,7 @@ dependencies = [
"rauth",
"rocket",
"serde",
"serde_json",
"ulid 0.5.0",
"validator",
]
@@ -3282,12 +3289,12 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.68"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"
checksum = "d23c1ba4cf0efd44be32017709280b32d1cea5c3f1275c3b6d9e8bc54f758085"
dependencies = [
"indexmap",
"itoa",
"itoa 1.0.1",
"ryu",
"serde",
]
@@ -3299,7 +3306,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
dependencies = [
"form_urlencoded",
"itoa",
"itoa 0.4.8",
"ryu",
"serde",
]