|
@@ -2,6 +2,12 @@
|
|
# It is not intended for manual editing.
|
|
# It is not intended for manual editing.
|
|
version = 3
|
|
version = 3
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "adler"
|
|
|
|
+version = "1.0.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "ahash"
|
|
name = "ahash"
|
|
version = "0.7.6"
|
|
version = "0.7.6"
|
|
@@ -32,6 +38,138 @@ dependencies = [
|
|
"yansi-term",
|
|
"yansi-term",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-channel"
|
|
|
|
+version = "1.6.1"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
|
|
|
|
+dependencies = [
|
|
|
|
+ "concurrent-queue",
|
|
|
|
+ "event-listener",
|
|
|
|
+ "futures-core",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-executor"
|
|
|
|
+version = "1.4.1"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
|
|
|
|
+dependencies = [
|
|
|
|
+ "async-task",
|
|
|
|
+ "concurrent-queue",
|
|
|
|
+ "fastrand",
|
|
|
|
+ "futures-lite",
|
|
|
|
+ "once_cell",
|
|
|
|
+ "slab",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-global-executor"
|
|
|
|
+version = "2.0.4"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "c290043c9a95b05d45e952fb6383c67bcb61471f60cfa21e890dba6654234f43"
|
|
|
|
+dependencies = [
|
|
|
|
+ "async-channel",
|
|
|
|
+ "async-executor",
|
|
|
|
+ "async-io",
|
|
|
|
+ "async-mutex",
|
|
|
|
+ "blocking",
|
|
|
|
+ "futures-lite",
|
|
|
|
+ "num_cpus",
|
|
|
|
+ "once_cell",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-io"
|
|
|
|
+version = "1.6.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b"
|
|
|
|
+dependencies = [
|
|
|
|
+ "concurrent-queue",
|
|
|
|
+ "futures-lite",
|
|
|
|
+ "libc",
|
|
|
|
+ "log",
|
|
|
|
+ "once_cell",
|
|
|
|
+ "parking",
|
|
|
|
+ "polling",
|
|
|
|
+ "slab",
|
|
|
|
+ "socket2",
|
|
|
|
+ "waker-fn",
|
|
|
|
+ "winapi",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-lock"
|
|
|
|
+version = "2.5.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
|
|
|
|
+dependencies = [
|
|
|
|
+ "event-listener",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-mutex"
|
|
|
|
+version = "1.4.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
|
|
|
|
+dependencies = [
|
|
|
|
+ "event-listener",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-std"
|
|
|
|
+version = "1.11.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "52580991739c5cdb36cde8b2a516371c0a3b70dda36d916cc08b82372916808c"
|
|
|
|
+dependencies = [
|
|
|
|
+ "async-channel",
|
|
|
|
+ "async-global-executor",
|
|
|
|
+ "async-io",
|
|
|
|
+ "async-lock",
|
|
|
|
+ "crossbeam-utils",
|
|
|
|
+ "futures-channel",
|
|
|
|
+ "futures-core",
|
|
|
|
+ "futures-io",
|
|
|
|
+ "futures-lite",
|
|
|
|
+ "gloo-timers",
|
|
|
|
+ "kv-log-macro",
|
|
|
|
+ "log",
|
|
|
|
+ "memchr",
|
|
|
|
+ "num_cpus",
|
|
|
|
+ "once_cell",
|
|
|
|
+ "pin-project-lite",
|
|
|
|
+ "pin-utils",
|
|
|
|
+ "slab",
|
|
|
|
+ "wasm-bindgen-futures",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-stream"
|
|
|
|
+version = "0.3.3"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
|
|
|
|
+dependencies = [
|
|
|
|
+ "async-stream-impl",
|
|
|
|
+ "futures-core",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-stream-impl"
|
|
|
|
+version = "0.3.3"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
|
|
|
|
+dependencies = [
|
|
|
|
+ "proc-macro2",
|
|
|
|
+ "quote",
|
|
|
|
+ "syn",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "async-task"
|
|
|
|
+version = "4.2.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "30696a84d817107fc028e049980e09d5e140e8da8f1caeb17e8e950658a3cea9"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "async-trait"
|
|
name = "async-trait"
|
|
version = "0.1.53"
|
|
version = "0.1.53"
|
|
@@ -52,6 +190,12 @@ dependencies = [
|
|
"num-traits",
|
|
"num-traits",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "atomic-waker"
|
|
|
|
+version = "1.0.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "autocfg"
|
|
name = "autocfg"
|
|
version = "1.1.0"
|
|
version = "1.1.0"
|
|
@@ -60,18 +204,21 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "axum"
|
|
name = "axum"
|
|
-version = "0.1.2"
|
|
|
|
|
|
+version = "0.2.0"
|
|
dependencies = [
|
|
dependencies = [
|
|
|
|
+ "async-std",
|
|
|
|
+ "async-stream",
|
|
"async-trait",
|
|
"async-trait",
|
|
"axum 0.5.4",
|
|
"axum 0.5.4",
|
|
- "bb8",
|
|
|
|
- "bb8-postgres",
|
|
|
|
|
|
+ "axum-core",
|
|
|
|
+ "deadpool",
|
|
|
|
+ "deadpool-postgres",
|
|
"dotenv",
|
|
"dotenv",
|
|
"futures",
|
|
"futures",
|
|
"futures-util",
|
|
"futures-util",
|
|
"hyper",
|
|
"hyper",
|
|
"mongodb",
|
|
"mongodb",
|
|
- "num",
|
|
|
|
|
|
+ "num_cpus",
|
|
"rand",
|
|
"rand",
|
|
"serde",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_derive",
|
|
@@ -82,7 +229,7 @@ dependencies = [
|
|
"tokio-pg-mapper-derive",
|
|
"tokio-pg-mapper-derive",
|
|
"tokio-postgres",
|
|
"tokio-postgres",
|
|
"tower",
|
|
"tower",
|
|
- "tower-http",
|
|
|
|
|
|
+ "tower-http 0.2.5",
|
|
"yarte",
|
|
"yarte",
|
|
]
|
|
]
|
|
|
|
|
|
@@ -112,7 +259,7 @@ dependencies = [
|
|
"sync_wrapper",
|
|
"sync_wrapper",
|
|
"tokio",
|
|
"tokio",
|
|
"tower",
|
|
"tower",
|
|
- "tower-http",
|
|
|
|
|
|
+ "tower-http 0.3.1",
|
|
"tower-layer",
|
|
"tower-layer",
|
|
"tower-service",
|
|
"tower-service",
|
|
]
|
|
]
|
|
@@ -137,31 +284,6 @@ version = "0.13.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
|
|
|
|
-[[package]]
|
|
|
|
-name = "bb8"
|
|
|
|
-version = "0.8.0"
|
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
-checksum = "1627eccf3aa91405435ba240be23513eeca466b5dc33866422672264de061582"
|
|
|
|
-dependencies = [
|
|
|
|
- "async-trait",
|
|
|
|
- "futures-channel",
|
|
|
|
- "futures-util",
|
|
|
|
- "parking_lot 0.12.0",
|
|
|
|
- "tokio",
|
|
|
|
-]
|
|
|
|
-
|
|
|
|
-[[package]]
|
|
|
|
-name = "bb8-postgres"
|
|
|
|
-version = "0.8.0"
|
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
-checksum = "f0a22f6e28b0cf30a1861b69e3defedad0b98991a5bc54ab11bb0c2e20927686"
|
|
|
|
-dependencies = [
|
|
|
|
- "async-trait",
|
|
|
|
- "bb8",
|
|
|
|
- "tokio",
|
|
|
|
- "tokio-postgres",
|
|
|
|
-]
|
|
|
|
-
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "bitflags"
|
|
name = "bitflags"
|
|
version = "1.3.2"
|
|
version = "1.3.2"
|
|
@@ -177,6 +299,20 @@ dependencies = [
|
|
"generic-array",
|
|
"generic-array",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "blocking"
|
|
|
|
+version = "1.2.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
|
|
|
|
+dependencies = [
|
|
|
|
+ "async-channel",
|
|
|
|
+ "async-task",
|
|
|
|
+ "atomic-waker",
|
|
|
|
+ "fastrand",
|
|
|
|
+ "futures-lite",
|
|
|
|
+ "once_cell",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "bson"
|
|
name = "bson"
|
|
version = "2.2.0"
|
|
version = "2.2.0"
|
|
@@ -220,11 +356,20 @@ version = "1.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
|
|
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "cache-padded"
|
|
|
|
+version = "1.2.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "cc"
|
|
name = "cc"
|
|
version = "1.0.73"
|
|
version = "1.0.73"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
|
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
|
|
|
+dependencies = [
|
|
|
|
+ "jobserver",
|
|
|
|
+]
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "cfg-if"
|
|
name = "cfg-if"
|
|
@@ -245,6 +390,15 @@ dependencies = [
|
|
"winapi",
|
|
"winapi",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "concurrent-queue"
|
|
|
|
+version = "1.2.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cache-padded",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "convert_case"
|
|
name = "convert_case"
|
|
version = "0.4.0"
|
|
version = "0.4.0"
|
|
@@ -291,6 +445,15 @@ version = "1.1.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
|
|
checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "crc32fast"
|
|
|
|
+version = "1.3.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cfg-if",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "crossbeam-queue"
|
|
name = "crossbeam-queue"
|
|
version = "0.3.5"
|
|
version = "0.3.5"
|
|
@@ -321,6 +484,16 @@ dependencies = [
|
|
"typenum",
|
|
"typenum",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "ctor"
|
|
|
|
+version = "0.1.22"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c"
|
|
|
|
+dependencies = [
|
|
|
|
+ "quote",
|
|
|
|
+ "syn",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "darling"
|
|
name = "darling"
|
|
version = "0.13.4"
|
|
version = "0.13.4"
|
|
@@ -362,6 +535,41 @@ version = "2.3.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
|
|
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "deadpool"
|
|
|
|
+version = "0.9.4"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "a90d58a15f5acfe41afcac9775d8e92f2338d14482220c778c6e42aa77778182"
|
|
|
|
+dependencies = [
|
|
|
|
+ "async-trait",
|
|
|
|
+ "deadpool-runtime",
|
|
|
|
+ "num_cpus",
|
|
|
|
+ "retain_mut",
|
|
|
|
+ "serde",
|
|
|
|
+ "tokio",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "deadpool-postgres"
|
|
|
|
+version = "0.10.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "c668a58063c6331e3437e3146970943ad82b1b36169fd979bb2645ac2088209a"
|
|
|
|
+dependencies = [
|
|
|
|
+ "deadpool",
|
|
|
|
+ "log",
|
|
|
|
+ "tokio",
|
|
|
|
+ "tokio-postgres",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "deadpool-runtime"
|
|
|
|
+version = "0.1.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
|
|
|
|
+dependencies = [
|
|
|
|
+ "tokio",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "derivative"
|
|
name = "derivative"
|
|
version = "2.2.0"
|
|
version = "2.2.0"
|
|
@@ -468,6 +676,18 @@ dependencies = [
|
|
"instant",
|
|
"instant",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "flate2"
|
|
|
|
+version = "1.0.23"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cfg-if",
|
|
|
|
+ "crc32fast",
|
|
|
|
+ "libc",
|
|
|
|
+ "miniz_oxide",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "fnv"
|
|
name = "fnv"
|
|
version = "1.0.7"
|
|
version = "1.0.7"
|
|
@@ -558,6 +778,21 @@ version = "0.3.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
|
|
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "futures-lite"
|
|
|
|
+version = "1.12.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
|
|
|
|
+dependencies = [
|
|
|
|
+ "fastrand",
|
|
|
|
+ "futures-core",
|
|
|
|
+ "futures-io",
|
|
|
|
+ "memchr",
|
|
|
|
+ "parking",
|
|
|
|
+ "pin-project-lite",
|
|
|
|
+ "waker-fn",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "futures-macro"
|
|
name = "futures-macro"
|
|
version = "0.3.21"
|
|
version = "0.3.21"
|
|
@@ -620,6 +855,18 @@ dependencies = [
|
|
"wasi 0.10.2+wasi-snapshot-preview1",
|
|
"wasi 0.10.2+wasi-snapshot-preview1",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "gloo-timers"
|
|
|
|
+version = "0.2.4"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
|
|
|
|
+dependencies = [
|
|
|
|
+ "futures-channel",
|
|
|
|
+ "futures-core",
|
|
|
|
+ "js-sys",
|
|
|
|
+ "wasm-bindgen",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "hashbrown"
|
|
name = "hashbrown"
|
|
version = "0.11.2"
|
|
version = "0.11.2"
|
|
@@ -693,9 +940,9 @@ dependencies = [
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "http"
|
|
name = "http"
|
|
-version = "0.2.6"
|
|
|
|
|
|
+version = "0.2.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
|
|
|
|
|
|
+checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
|
|
dependencies = [
|
|
dependencies = [
|
|
"bytes",
|
|
"bytes",
|
|
"fnv",
|
|
"fnv",
|
|
@@ -721,9 +968,9 @@ checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "httparse"
|
|
name = "httparse"
|
|
-version = "1.7.0"
|
|
|
|
|
|
+version = "1.7.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6330e8a36bd8c859f3fa6d9382911fbb7147ec39807f63b923933a247240b9ba"
|
|
|
|
|
|
+checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "httpdate"
|
|
name = "httpdate"
|
|
@@ -829,6 +1076,15 @@ version = "1.0.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
|
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "jobserver"
|
|
|
|
+version = "0.1.24"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
|
|
|
|
+dependencies = [
|
|
|
|
+ "libc",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "js-sys"
|
|
name = "js-sys"
|
|
version = "0.3.57"
|
|
version = "0.3.57"
|
|
@@ -838,6 +1094,15 @@ dependencies = [
|
|
"wasm-bindgen",
|
|
"wasm-bindgen",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "kv-log-macro"
|
|
|
|
+version = "1.0.7"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
|
|
|
+dependencies = [
|
|
|
|
+ "log",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "lazy_static"
|
|
name = "lazy_static"
|
|
version = "1.4.0"
|
|
version = "1.4.0"
|
|
@@ -873,6 +1138,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
|
|
checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
|
|
dependencies = [
|
|
dependencies = [
|
|
"cfg-if",
|
|
"cfg-if",
|
|
|
|
+ "value-bag",
|
|
]
|
|
]
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
@@ -929,6 +1195,15 @@ version = "0.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "miniz_oxide"
|
|
|
|
+version = "0.5.1"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
|
|
|
|
+dependencies = [
|
|
|
|
+ "adler",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "mio"
|
|
name = "mio"
|
|
version = "0.8.2"
|
|
version = "0.8.2"
|
|
@@ -964,6 +1239,7 @@ dependencies = [
|
|
"bson",
|
|
"bson",
|
|
"chrono",
|
|
"chrono",
|
|
"derivative",
|
|
"derivative",
|
|
|
|
+ "flate2",
|
|
"futures-core",
|
|
"futures-core",
|
|
"futures-executor",
|
|
"futures-executor",
|
|
"futures-io",
|
|
"futures-io",
|
|
@@ -984,6 +1260,7 @@ dependencies = [
|
|
"serde_with",
|
|
"serde_with",
|
|
"sha-1",
|
|
"sha-1",
|
|
"sha2",
|
|
"sha2",
|
|
|
|
+ "snap",
|
|
"socket2",
|
|
"socket2",
|
|
"stringprep",
|
|
"stringprep",
|
|
"strsim",
|
|
"strsim",
|
|
@@ -997,6 +1274,7 @@ dependencies = [
|
|
"typed-builder",
|
|
"typed-builder",
|
|
"uuid",
|
|
"uuid",
|
|
"webpki-roots",
|
|
"webpki-roots",
|
|
|
|
+ "zstd",
|
|
]
|
|
]
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
@@ -1036,28 +1314,6 @@ dependencies = [
|
|
"winapi",
|
|
"winapi",
|
|
]
|
|
]
|
|
|
|
|
|
-[[package]]
|
|
|
|
-name = "num"
|
|
|
|
-version = "0.4.0"
|
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
-checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
|
|
|
|
-dependencies = [
|
|
|
|
- "num-complex",
|
|
|
|
- "num-integer",
|
|
|
|
- "num-iter",
|
|
|
|
- "num-rational",
|
|
|
|
- "num-traits",
|
|
|
|
-]
|
|
|
|
-
|
|
|
|
-[[package]]
|
|
|
|
-name = "num-complex"
|
|
|
|
-version = "0.4.0"
|
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
-checksum = "26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085"
|
|
|
|
-dependencies = [
|
|
|
|
- "num-traits",
|
|
|
|
-]
|
|
|
|
-
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "num-integer"
|
|
name = "num-integer"
|
|
version = "0.1.44"
|
|
version = "0.1.44"
|
|
@@ -1068,28 +1324,6 @@ dependencies = [
|
|
"num-traits",
|
|
"num-traits",
|
|
]
|
|
]
|
|
|
|
|
|
-[[package]]
|
|
|
|
-name = "num-iter"
|
|
|
|
-version = "0.1.43"
|
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
-checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
|
|
|
|
-dependencies = [
|
|
|
|
- "autocfg",
|
|
|
|
- "num-integer",
|
|
|
|
- "num-traits",
|
|
|
|
-]
|
|
|
|
-
|
|
|
|
-[[package]]
|
|
|
|
-name = "num-rational"
|
|
|
|
-version = "0.4.0"
|
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
-checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
|
|
|
|
-dependencies = [
|
|
|
|
- "autocfg",
|
|
|
|
- "num-integer",
|
|
|
|
- "num-traits",
|
|
|
|
-]
|
|
|
|
-
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "num-traits"
|
|
name = "num-traits"
|
|
version = "0.2.14"
|
|
version = "0.2.14"
|
|
@@ -1158,6 +1392,12 @@ dependencies = [
|
|
"winapi",
|
|
"winapi",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "parking"
|
|
|
|
+version = "2.0.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "parking_lot"
|
|
name = "parking_lot"
|
|
version = "0.11.2"
|
|
version = "0.11.2"
|
|
@@ -1283,6 +1523,19 @@ version = "0.3.25"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
|
|
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "polling"
|
|
|
|
+version = "2.2.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cfg-if",
|
|
|
|
+ "libc",
|
|
|
|
+ "log",
|
|
|
|
+ "wepoll-ffi",
|
|
|
|
+ "winapi",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "postgres-protocol"
|
|
name = "postgres-protocol"
|
|
version = "0.6.3"
|
|
version = "0.6.3"
|
|
@@ -1438,6 +1691,12 @@ dependencies = [
|
|
"quick-error",
|
|
"quick-error",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "retain_mut"
|
|
|
|
+version = "0.1.7"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "8c31b5c4033f8fdde8700e4657be2c497e7288f01515be52168c631e2e4d4086"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "ring"
|
|
name = "ring"
|
|
version = "0.16.20"
|
|
version = "0.16.20"
|
|
@@ -1709,6 +1968,12 @@ version = "1.8.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
|
|
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "snap"
|
|
|
|
+version = "1.0.5"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "45456094d1983e2ee2a18fdfebce3189fa451699d0502cb8e3b49dba5ba41451"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "socket2"
|
|
name = "socket2"
|
|
version = "0.4.4"
|
|
version = "0.4.4"
|
|
@@ -1932,9 +2197,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "tokio"
|
|
name = "tokio"
|
|
-version = "1.17.0"
|
|
|
|
|
|
+version = "1.18.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
|
|
|
|
|
|
+checksum = "0f48b6d60512a392e34dbf7fd456249fd2de3c83669ab642e021903f4015185b"
|
|
dependencies = [
|
|
dependencies = [
|
|
"bytes",
|
|
"bytes",
|
|
"libc",
|
|
"libc",
|
|
@@ -2091,9 +2356,27 @@ dependencies = [
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "tower-http"
|
|
name = "tower-http"
|
|
-version = "0.3.0"
|
|
|
|
|
|
+version = "0.2.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "79dd37121c38240c4b4fe6520332406218bbf876f2f690fe9e406020189366fd"
|
|
|
|
|
|
+checksum = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8"
|
|
|
|
+dependencies = [
|
|
|
|
+ "bitflags",
|
|
|
|
+ "bytes",
|
|
|
|
+ "futures-core",
|
|
|
|
+ "futures-util",
|
|
|
|
+ "http",
|
|
|
|
+ "http-body",
|
|
|
|
+ "http-range-header",
|
|
|
|
+ "pin-project-lite",
|
|
|
|
+ "tower-layer",
|
|
|
|
+ "tower-service",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "tower-http"
|
|
|
|
+version = "0.3.1"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "f7755f984aa46a9d50829dc84b6a674b2f3b8b4de47c0708923953b090d48acc"
|
|
dependencies = [
|
|
dependencies = [
|
|
"bitflags",
|
|
"bitflags",
|
|
"bytes",
|
|
"bytes",
|
|
@@ -2315,6 +2598,16 @@ dependencies = [
|
|
"v_escape",
|
|
"v_escape",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "value-bag"
|
|
|
|
+version = "1.0.0-alpha.8"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "79923f7731dc61ebfba3633098bf3ac533bbd35ccd8c57e7088d9a5eebe0263f"
|
|
|
|
+dependencies = [
|
|
|
|
+ "ctor",
|
|
|
|
+ "version_check",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "vcpkg"
|
|
name = "vcpkg"
|
|
version = "0.2.15"
|
|
version = "0.2.15"
|
|
@@ -2327,6 +2620,12 @@ version = "0.9.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "waker-fn"
|
|
|
|
+version = "1.1.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "want"
|
|
name = "want"
|
|
version = "0.3.0"
|
|
version = "0.3.0"
|
|
@@ -2374,6 +2673,18 @@ dependencies = [
|
|
"wasm-bindgen-shared",
|
|
"wasm-bindgen-shared",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "wasm-bindgen-futures"
|
|
|
|
+version = "0.4.30"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cfg-if",
|
|
|
|
+ "js-sys",
|
|
|
|
+ "wasm-bindgen",
|
|
|
|
+ "web-sys",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "wasm-bindgen-macro"
|
|
name = "wasm-bindgen-macro"
|
|
version = "0.2.80"
|
|
version = "0.2.80"
|
|
@@ -2432,6 +2743,15 @@ dependencies = [
|
|
"webpki",
|
|
"webpki",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "wepoll-ffi"
|
|
|
|
+version = "0.1.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cc",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "whoami"
|
|
name = "whoami"
|
|
version = "1.2.1"
|
|
version = "1.2.1"
|
|
@@ -2615,3 +2935,32 @@ dependencies = [
|
|
"unicode-xid",
|
|
"unicode-xid",
|
|
"yarte_helpers",
|
|
"yarte_helpers",
|
|
]
|
|
]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "zstd"
|
|
|
|
+version = "0.11.1+zstd.1.5.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "77a16b8414fde0414e90c612eba70985577451c4c504b99885ebed24762cb81a"
|
|
|
|
+dependencies = [
|
|
|
|
+ "zstd-safe",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "zstd-safe"
|
|
|
|
+version = "5.0.1+zstd.1.5.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "7c12659121420dd6365c5c3de4901f97145b79651fb1d25814020ed2ed0585ae"
|
|
|
|
+dependencies = [
|
|
|
|
+ "libc",
|
|
|
|
+ "zstd-sys",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "zstd-sys"
|
|
|
|
+version = "2.0.1+zstd.1.5.2"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cc",
|
|
|
|
+ "libc",
|
|
|
|
+]
|