|
@@ -1,5 +1,25 @@
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
# It is not intended for manual editing.
|
|
|
+[[package]]
|
|
|
+name = "aho-corasick"
|
|
|
+version = "0.7.18"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
|
|
|
+dependencies = [
|
|
|
+ "memchr",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "atty"
|
|
|
+version = "0.2.14"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
|
+dependencies = [
|
|
|
+ "hermit-abi",
|
|
|
+ "libc",
|
|
|
+ "winapi",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "autocfg"
|
|
|
version = "1.0.1"
|
|
@@ -85,6 +105,19 @@ version = "0.15.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "env_logger"
|
|
|
+version = "0.7.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
|
|
|
+dependencies = [
|
|
|
+ "atty",
|
|
|
+ "humantime",
|
|
|
+ "log",
|
|
|
+ "regex",
|
|
|
+ "termcolor",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "fnv"
|
|
|
version = "1.0.7"
|
|
@@ -109,6 +142,7 @@ checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27"
|
|
|
dependencies = [
|
|
|
"futures-channel",
|
|
|
"futures-core",
|
|
|
+ "futures-executor",
|
|
|
"futures-io",
|
|
|
"futures-sink",
|
|
|
"futures-task",
|
|
@@ -131,12 +165,36 @@ version = "0.3.15"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "futures-executor"
|
|
|
+version = "0.3.15"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79"
|
|
|
+dependencies = [
|
|
|
+ "futures-core",
|
|
|
+ "futures-task",
|
|
|
+ "futures-util",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "futures-io"
|
|
|
version = "0.3.15"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "futures-macro"
|
|
|
+version = "0.3.15"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121"
|
|
|
+dependencies = [
|
|
|
+ "autocfg",
|
|
|
+ "proc-macro-hack",
|
|
|
+ "proc-macro2",
|
|
|
+ "quote",
|
|
|
+ "syn",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "futures-sink"
|
|
|
version = "0.3.15"
|
|
@@ -156,11 +214,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
|
|
|
dependencies = [
|
|
|
"autocfg",
|
|
|
+ "futures-channel",
|
|
|
"futures-core",
|
|
|
+ "futures-io",
|
|
|
+ "futures-macro",
|
|
|
"futures-sink",
|
|
|
"futures-task",
|
|
|
+ "memchr",
|
|
|
"pin-project-lite",
|
|
|
"pin-utils",
|
|
|
+ "proc-macro-hack",
|
|
|
+ "proc-macro-nested",
|
|
|
"slab",
|
|
|
]
|
|
|
|
|
@@ -289,6 +353,15 @@ version = "1.0.1"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "humantime"
|
|
|
+version = "1.3.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
|
|
|
+dependencies = [
|
|
|
+ "quick-error",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "hyper"
|
|
|
version = "0.14.8"
|
|
@@ -565,6 +638,28 @@ version = "0.2.10"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "pretty_env_logger"
|
|
|
+version = "0.4.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
|
|
|
+dependencies = [
|
|
|
+ "env_logger",
|
|
|
+ "log",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "proc-macro-hack"
|
|
|
+version = "0.5.19"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "proc-macro-nested"
|
|
|
+version = "0.1.7"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "proc-macro2"
|
|
|
version = "1.0.27"
|
|
@@ -679,6 +774,23 @@ dependencies = [
|
|
|
"bitflags",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "regex"
|
|
|
+version = "1.5.4"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
|
|
|
+dependencies = [
|
|
|
+ "aho-corasick",
|
|
|
+ "memchr",
|
|
|
+ "regex-syntax",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "regex-syntax"
|
|
|
+version = "0.6.25"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "remove_dir_all"
|
|
|
version = "0.5.3"
|
|
@@ -693,8 +805,14 @@ name = "rustpad"
|
|
|
version = "0.1.0"
|
|
|
dependencies = [
|
|
|
"dotenv",
|
|
|
+ "futures",
|
|
|
+ "log",
|
|
|
"operational-transform",
|
|
|
+ "pretty_env_logger",
|
|
|
+ "serde",
|
|
|
+ "serde_json",
|
|
|
"tokio",
|
|
|
+ "tokio-stream",
|
|
|
"warp",
|
|
|
]
|
|
|
|
|
@@ -727,6 +845,20 @@ name = "serde"
|
|
|
version = "1.0.126"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
|
|
|
+dependencies = [
|
|
|
+ "serde_derive",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "serde_derive"
|
|
|
+version = "1.0.126"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+ "quote",
|
|
|
+ "syn",
|
|
|
+]
|
|
|
|
|
|
[[package]]
|
|
|
name = "serde_json"
|
|
@@ -820,6 +952,15 @@ dependencies = [
|
|
|
"winapi",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "termcolor"
|
|
|
+version = "1.1.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
|
|
|
+dependencies = [
|
|
|
+ "winapi-util",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "time"
|
|
|
version = "0.1.43"
|
|
@@ -1105,6 +1246,15 @@ version = "0.4.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "winapi-util"
|
|
|
+version = "0.1.5"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
|
+dependencies = [
|
|
|
+ "winapi",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
version = "0.4.0"
|