diff --git a/Cargo.lock b/Cargo.lock index be37790..023c3b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "actix" version = "0.7.9" @@ -78,7 +80,7 @@ checksum = "9fade9bd4bb46bacde89f1e726c7a3dd230536092712f5d94d77ca57c087fca0" dependencies = [ "actix-codec", "actix-rt", - "actix-service", + "actix-service 0.4.2", "actix-utils", "derive_more 0.15.0", "either", @@ -97,7 +99,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1ee66089e3453334aac7e96ed10c48b6659f21f407826b92014c8097e4c0511" dependencies = [ "actix-http", - "actix-service", + "actix-service 0.4.2", "actix-web", "bitflags", "bytes", @@ -119,7 +121,7 @@ dependencies = [ "actix-codec", "actix-connect", "actix-server-config", - "actix-service", + "actix-service 0.4.2", "actix-threadpool", "actix-utils", "base64 0.10.1", @@ -164,7 +166,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d91f0604a1bf3e628b4c3f516f07280f33a33cece27df514227f5ec30925bb55" dependencies = [ - "actix-service", + "actix-service 0.4.2", "actix-web", "bytes", "derive_more 0.15.0", @@ -238,7 +240,7 @@ checksum = "dd626534af8d0a738e5f74901fe603af0445708f91b86a7d763d80df10d562a5" dependencies = [ "actix-rt", "actix-server-config", - "actix-service", + "actix-service 0.4.2", "futures", "log", "mio", @@ -272,6 +274,16 @@ dependencies = [ "futures", ] +[[package]] +name = "actix-service" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0052435d581b5be835d11f4eb3bce417c8af18d87ddf8ace99f8e67e595882bb" +dependencies = [ + "futures-util", + "pin-project", +] + [[package]] name = "actix-testing" version = "0.1.0" @@ -281,7 +293,7 @@ dependencies = [ "actix-rt", "actix-server", "actix-server-config", - "actix-service", + "actix-service 0.4.2", "futures", "log", "net2", @@ -311,7 +323,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "908c3109948f5c37a8b57fd343a37dcad5bb1d90bfd06300ac96b17bbe017b95" dependencies = [ "actix-codec", - "actix-service", + "actix-service 0.4.2", "bytes", "either", "futures", @@ -332,7 +344,7 @@ dependencies = [ "actix-rt", "actix-server", "actix-server-config", - "actix-service", + "actix-service 0.4.2", "actix-testing", "actix-threadpool", "actix-utils", @@ -507,7 +519,7 @@ checksum = "5e995283278dd3bf0449e7534e77184adb1570c0de8b6a50bf7c9d01ad8db8c4" dependencies = [ "actix-codec", "actix-http", - "actix-service", + "actix-service 0.4.2", "base64 0.10.1", "bytes", "derive_more 0.15.0", @@ -931,7 +943,7 @@ dependencies = [ "actix-http", "actix-multipart", "actix-net", - "actix-service", + "actix-service 1.0.6", "actix-web", "actix-web-actors", "argparse", @@ -1026,6 +1038,12 @@ version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" +[[package]] +name = "futures-core" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" + [[package]] name = "futures-cpupool" version = "0.1.8" @@ -1058,6 +1076,37 @@ dependencies = [ "tokio-executor", ] +[[package]] +name = "futures-macro" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.9", + "syn 1.0.60", +] + +[[package]] +name = "futures-task" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" + +[[package]] +name = "futures-util" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" +dependencies = [ + "futures-core", + "futures-macro", + "futures-task", + "pin-project-lite", + "pin-utils", + "slab", +] + [[package]] name = "getrandom" version = "0.1.16" @@ -1743,6 +1792,38 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" +[[package]] +name = "pin-project" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9615c18d31137579e9ff063499264ddc1278e7b1982757ebc111028c4d1dc909" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "044964427019eed9d49d9d5bbce6047ef18f37100ea400912a9fa4a3523ab12a" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.9", + "syn 1.0.60", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + [[package]] name = "ppv-lite86" version = "0.2.10" diff --git a/Cargo.toml b/Cargo.toml index d14c4b2..0c20b5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ actix-files = "0.1" actix-http = "0.2" actix-multipart = "0.1.5" actix-net = "0.2" -actix-service = "0.4" +actix-service = "1.0" actix-web = "1.0" actix-web-actors = "1.0" argparse = "0.2.2"