diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-12-30 14:57:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-30 14:57:17 +0100 |
| commit | 46d76a7562025374600a7f866dfc68c1b7e268e9 (patch) | |
| tree | 0681d383781d8a28ac7ea23d75f22b1faeea0208 /cli/Cargo.toml | |
| parent | df1665a8fc92168c3eb115a768ecfeccbe575e18 (diff) | |
upgrade: Tokio 0.2 (#3418)
Diffstat (limited to 'cli/Cargo.toml')
| -rw-r--r-- | cli/Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index dacefa249..43cccd14f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -28,12 +28,13 @@ deno_typescript = { path = "../deno_typescript", version = "0.27.0" } ansi_term = "0.12.1" atty = "0.2.13" base64 = "0.11.0" +bytes = "0.5" byteorder = "1.3.2" clap = "2.33.0" dirs = "2.0.2" dlopen = "0.1.8" futures = { version = "0.3", features = [ "compat", "io-compat" ] } -http = "0.1.19" +http = "0.2" hyper = "0.12.35" hyper-rustls = "0.17.1" indexmap = "1.3.0" @@ -43,7 +44,7 @@ log = "0.4.8" rand = "0.7.2" regex = "1.3.1" remove_dir_all = "0.5.2" -reqwest = { version = "0.9.22", default-features = false, features = ["rustls-tls"] } +reqwest = { git = "https://github.com/seanmonstar/reqwest.git", rev = "0ab5df3", features = ["rustls-tls", "stream"] } ring = "0.16.9" rustyline = "5.0.4" serde = { version = "1.0.102", features = ["derive"] } @@ -53,11 +54,10 @@ source-map-mappings = "0.5.0" sys-info = "0.5.8" tempfile = "3.1.0" termcolor = "1.0.5" -tokio = "0.1.22" +tokio = { version = "0.2.6", features = ["full"] } tokio-executor = "0.1.8" -tokio-process = "0.2.4" -tokio-rustls = "0.10.2" -url = "1.7.2" +tokio-rustls = "0.12.0" +url = "2.1" utime = "0.2.1" webpki = "0.21.0" webpki-roots = "0.17.0" |
