##// END OF EJS Templates
hgweb: encode WSGI environment using the ISO-8859-1 codec...
hgweb: encode WSGI environment using the ISO-8859-1 codec The WSGI specification (PEP 3333) specifies that on Python 3 all strings passed by the server must be of type str with code points encodable using the ISO 8859-1 codec. For some reason, I introduced a bug in 2632c1ed8f34 by applying the reverse change. Maybe I got confused because PEP 3333 says that arbitrary operating system environment variables may be contained in the WSGI environment and therefore we need to handle the WSGI environment variables like we would handle operating system environment variables. The bug mentioned in the previous paragraph and fixed by this changeset manifested e.g. in the path of the URL being encoded in the wrong way. Browsers encode non-ASCII bytes with the percent-encoding. WSGI servers will decode the percent-encoded bytes and pass them to the application as strings where each byte is mapped to the corresponding code point with the same ordinal (i.e. it is decoded using the ISO-8859-1 codec). Mercurial uses the bytes type for these strings (which makes much more sense), so we need to encode it again using the ISO-8859-1 codec. If we use another codec, it can result in nonsense.

File last commit:

r45231:e9e44e61 default
r51713:9ed281bb stable
Show More
Cargo.lock
482 lines | 22.5 KiB | text/plain | TextLexer
Yuya Nishihara
rust-chg: update dependencies...
r45160 # This file is automatically @generated by Cargo.
# It is not intended for manual editing.
Yuya Nishihara
rust-chg: update dependencies
r40004 [[package]]
Yuya Nishihara
rust-chg: update dependencies...
r45160 name = "arc-swap"
version = "0.4.5"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
Yuya Nishihara
rust-chg: update dependencies...
r45160
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "async-trait"
version = "0.1.30"
Yuya Nishihara
rust-chg: update dependencies...
r45160 source = "registry+https://github.com/rust-lang/crates.io-index"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 dependencies = [
"proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
]
Yuya Nishihara
rust-chg: update dependencies
r40004
[[package]]
name = "bitflags"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "1.2.1"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "bytes"
version = "0.5.4"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "cc"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "1.0.50"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "cfg-if"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "0.1.10"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "chg"
version = "0.1.0"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "async-trait 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
"bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "tokio 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-hglib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 ]
[[package]]
Yuya Nishihara
rust-chg: update dependencies
r40004 name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: update dependencies...
r45160 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "futures"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "futures-channel"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "futures-core"
version = "0.3.4"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "futures-executor"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "futures-io"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "futures-macro"
version = "0.3.4"
Yuya Nishihara
rust-chg: update dependencies...
r45160 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "proc-macro-hack 0.5.15 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "futures-sink"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "futures-task"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "futures-util"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro-hack 0.5.15 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro-nested 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 ]
[[package]]
Yuya Nishihara
rust-chg: update dependencies
r40004 name = "iovec"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "0.1.4"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "lazy_static"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "1.4.0"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "libc"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 version = "0.2.69"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "log"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "0.4.8"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: update dependencies...
r45160 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "memchr"
version = "2.3.3"
Yuya Nishihara
rust-chg: update dependencies...
r45160 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust-chg: update dependencies
r40004 name = "mio"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "0.6.21"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: update dependencies...
r45160 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "mio-named-pipes"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: update dependencies...
r45160 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 "miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
name = "mio-uds"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: update dependencies...
r45160 "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "miow"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "socket2 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
name = "net2"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: update dependencies...
r45160 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "pin-project-lite"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "pin-utils"
version = "0.1.0-alpha.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "proc-macro-hack"
version = "0.5.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "proc-macro-nested"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "proc-macro2"
version = "1.0.10"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "quote"
version = "1.0.3"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
name = "redox_syscall"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "0.1.56"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust-chg: update dependencies...
r45160 name = "signal-hook-registry"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"arc-swap 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 ]
[[package]]
Yuya Nishihara
rust-chg: update dependencies
r40004 name = "slab"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "0.4.2"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "socket2"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 version = "0.3.12"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: update dependencies...
r45160 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "syn"
version = "1.0.17"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "tokio"
version = "0.2.18"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 "mio-named-pipes 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
"pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "tokio-hglib"
version = "0.3.0"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "async-trait 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
"bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "tokio-macros"
version = "0.2.5"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "tokio-util"
version = "0.3.1"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies...
r45160 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust-chg: update dependencies
r40004 ]
[[package]]
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 name = "unicode-xid"
version = "0.2.0"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi"
Yuya Nishihara
rust-chg: update dependencies...
r45160 version = "0.3.8"
Yuya Nishihara
rust-chg: update dependencies
r40004 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[metadata]
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum arc-swap 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d663a8e9a99154b5fb793032533f6328da35e23aac63d5c152279aa8ba356825"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "checksum async-trait 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)" = "da71fef07bc806586090247e971229289f64c210a278ee5ae419314eb386b31d"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "checksum bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
Yuya Nishihara
rust-chg: update dependencies
r40004 "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "checksum futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5c329ae8753502fb44ae4fc2b622fa2a94652c41e795143765ba0927f92ab780"
"checksum futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8"
"checksum futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a"
"checksum futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba"
"checksum futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6"
"checksum futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7"
"checksum futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6"
"checksum futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27"
"checksum futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
Yuya Nishihara
rust-chg: update dependencies
r40004 "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "checksum libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)" = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"
Yuya Nishihara
rust-chg: update dependencies
r40004 "checksum mio-named-pipes 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f5e374eff525ce1c5b7687c4cef63943e7686524a387933ad27ca7ec43779cb3"
"checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
"checksum miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "396aa0f2003d7df8395cb93e09871561ccc3e785f0acb369170e8cc74ddf9226"
"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "checksum pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "237844750cfbb86f67afe27eee600dfbbcb6188d734139b534cbfbf4f96792ae"
"checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587"
"checksum proc-macro-hack 0.5.15 (registry+https://github.com/rust-lang/crates.io-index)" = "0d659fe7c6d27f25e9d80a1a094c223f5246f6a6596453e09d7229bf42750b63"
"checksum proc-macro-nested 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8e946095f9d3ed29ec38de908c22f95d9ac008e424c7bcae54c75a79c527c694"
"checksum proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" = "df246d292ff63439fea9bc8c0a270bed0e390d5ebd4db4ba15aba81111b5abe3"
"checksum quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
"checksum signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94f478ede9f64724c5d173d7bb56099ec3e2d9fc2774aac65d34b8b890405f41"
"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
Yuya Nishihara
rust-chg: upgrade to futures-0.3 based libraries...
r45231 "checksum socket2 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)" = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
"checksum syn 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)" = "0df0eb663f387145cab623dea85b09c2c5b4b0aef44e945d928e682fce71bb03"
"checksum tokio 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "34ef16d072d2b6dc8b4a56c70f5c5ced1a37752116f8e7c1e80c659aa7cb6713"
"checksum tokio-hglib 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8d7e2b5d44911ebf67a1044423604f5f69206c5cbbd7e911b4966e6831514bca"
"checksum tokio-macros 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389"
"checksum tokio-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
Yuya Nishihara
rust-chg: update dependencies
r40004 "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
Yuya Nishihara
rust-chg: update dependencies...
r45160 "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
Yuya Nishihara
rust-chg: update dependencies
r40004 "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"