Reqwest 0.11

[?]
Jan 6, 2021, 9:58 AM
JRENVH5DF2F4SOV7UNJENFA7VDI3H63XK76R3LFZK6QCW7JIBLSQC

Dependencies

  • [2] KI2AFWOS Fixing a panic in pull
  • [3] ZQXP3HNA Version bump
  • [4] KMFL6X7E Fixing conflicts
  • [5] CT6FBU57 SDPX license + version bump
  • [6] B3QWIGDE Fixing the Git features with the latest Pijul (+ conflicts in Cargo.toml)
  • [7] RR65HCKO Thrussh versions
  • [8] YX3VCEOM Version bump
  • [9] 6DOXSHWG Cleanup, and version bump
  • [10] ZHABNS3S Canonicalize all paths
  • [11] 2K7JLB4Z No pager on Windows
  • [12] MU5GSJAW Partial push and pull (WARNING: breaks the existing protocol)
  • [13] K6GWUOD5 Styling progress bars
  • [14] VO5OQW4W Removing anyhow in libpijul
  • [15] 5YDI33C4 Fixing pager on OSX
  • [16] VDI66F2D Solving a conflict, using the new Pijul
  • [17] MWKDNWZW Version bump
  • [18] XAY4DYRR Version bump
  • [19] Q45QHPO4 Feedback on network stuff
  • [20] OCBM7IFE New release: pijul-1.0.0-alpha.8
  • [21] A3DMBJJA Upgrading the `git` subcommand to the latest Sanakirja and Libpijul
  • [22] UDHP4ZVB Fixing SSH asynchronicity issues
  • [23] OUWD436A Version bump
  • [24] ERV3644Q Adding the block module
  • [25] SZWBLWZ4 Reading ~/.ssh/config
  • [26] DNQHXWRZ address clippy hard errors
  • [27] IQ4FCHPZ HTTP connections: pooling + retry on error
  • [28] LYTVEPH3 Avoid cloning into an existing path
  • [29] 23LVKATN Use pager crate for log output
  • [30] OJZWJUF2 MUCH faster `pijul add -r`
  • [31] SXEYMYF7 Fixing the bad changes in history (unfortunately, by rebooting).
  • [32] RPZK3JQA Fixing a conflict
  • [33] ZTVNGFNT Version bump
  • [34] FBXYP7QM Forgot to add remote::http
  • [35] WZVCLZKY address clippy lints
  • [36] VBMXB443 Retrying if the HTTP connection drops while reading the body
  • [37] WI5BS6BS New published versions
  • [38] B5Z4IMEU Generating Cargo.nix for pijul 1.0.0-alpha.6
  • [39] BT2ZHPY4 Version bumps
  • [40] CCLLB7OI Upgrading to Sanakirja 0.15 + version bump
  • [41] 3S4DR77Z Version updates
  • [42] SAGSYAPX Various version bumps
  • [43] L4JXJHWX pijul/*: reorganize imports and remove extern crate
  • [44] 5BRU2RRW Cleanup (debugging a crash related to trees/inodes)
  • [45] G6YZ7U65 Version bump
  • [46] SPA2OL5I keep-changes feature (default) to avoid deleting problematic changes
  • [47] BVVMTOYW Proper renaming of changes downloaded over HTTP
  • [48] 367UBQ6K Forwarding SSH stderr, and progress bar for push
  • [49] XL6Y64UP Fixing a panic when iterating over the basenames of a file
  • [50] UBCBQ5FG Removing pijul/src/commands/checkout.rs (unused file), as well as litorg comments
  • [51] NX5I5H53 New published versions
  • [52] JACZWIJ6 Version bump
  • [53] XWETQ4DE Upgrading versions
  • [54] Q7CAYX5N Fixing Windows compilation
  • [55] GHO6DWPI Refactoring iterators
  • [56] UFCZKKLX Upgrading to the latest Sanakirja/Rand
  • [57] TPEH2XNB 1.0.0-alpha.28, with Tokio 1.0
  • [58] JMBGCWM5 Fixing a zombie, probably due to the new conflict algorithm
  • [59] KUMJITTF Version bump in the lockfiles
  • [60] 3WIQYEIS Fixing conflicts in Cargo.lock
  • [61] N35L72XV Versions in Cargo.lock
  • [62] PJ7T2VFL Do not hang on locked repositories
  • [63] H62VFFJE Cargo.nix, and solving conflicts
  • [64] WIORLB47 Version bump

Change contents

  • edit in pijul/src/remote/http.rs at line 10
    [7.25][7.918:950]()
    use tokio_compat_02::FutureExt;
  • replacement in pijul/src/remote/http.rs at line 33
    [7.11][7.951:1131]()
    let mut res = if let Ok(res) = client
    .get(&url)
    .query(&[("change", &c32)])
    .send()
    .compat()
    .await
    {
    [7.11]
    [7.173]
    let mut res = if let Ok(res) = client.get(&url).query(&[("change", &c32)]).send().await {
  • replacement in pijul/src/remote/http.rs at line 47
    [7.38][7.1214:1261]()
    match res.chunk().compat().await {
    [7.38]
    [7.294]
    match res.chunk().await {
  • edit in pijul/src/remote/http.rs at line 157
    [7.1781][7.1352:1378]()
    .compat()
  • replacement in pijul/src/remote/http.rs at line 181
    [7.5584][7.1379:1457]()
    let res = self.client.get(&url).query(&query).send().compat().await?;
    [7.5584]
    [7.5653]
    let res = self.client.get(&url).query(&query).send().await?;
  • replacement in pijul/src/remote/http.rs at line 185
    [7.5823][7.1458:1506]()
    let resp = res.bytes().compat().await?;
    [7.5823]
    [7.5862]
    let resp = res.bytes().await?;
  • replacement in pijul/src/remote/http.rs at line 220
    [2.683][2.683:757]()
    let res = self.client.get(&url).query(&q).send().compat().await?;
    [2.683]
    [2.757]
    let res = self.client.get(&url).query(&q).send().await?;
  • replacement in pijul/src/remote/http.rs at line 224
    [2.858][2.858:906]()
    let resp = res.bytes().compat().await?;
    [2.858]
    [2.906]
    let resp = res.bytes().await?;
  • replacement in pijul/src/remote/http.rs at line 259
    [2.2101][2.2101:2147]()
    let res = res.send().compat().await?;
    [2.2101]
    [2.2147]
    let res = res.send().await?;
  • replacement in pijul/src/remote/http.rs at line 267
    [2.2384][2.2384:2446]()
    while let Some(item) = stream.next().compat().await {
    [2.2384]
    [2.2446]
    while let Some(item) = stream.next().await {
  • file un-deletion: upgrade.rs (-xw-x--x--)upgrade.rs (-xw-x--x--)
    [7.93386][7.93387:93399](),[7.93399][7.93400:93400](),[7.93386][7.93387:93399]()
  • replacement in pijul/Cargo.toml at line 4
    [7.196462][3.0:27]()
    version = "1.0.0-alpha.29"
    [7.196462]
    [7.196488]
    version = "1.0.0-alpha.31"
  • replacement in pijul/Cargo.toml at line 50
    [7.197438][6.2036:2126]()
    libpijul = { path = "../libpijul", version = "1.0.0-alpha.26", features = [ "tarball" ] }
    [7.197438]
    [7.197523]
    libpijul = { path = "../libpijul", version = "1.0.0-alpha.27", features = [ "tarball" ] }
  • replacement in pijul/Cargo.toml at line 61
    [7.1634][7.1634:1656]()
    thrussh-keys = "0.20"
    [7.1634]
    [7.1656]
    thrussh-keys = "0.20.1"
  • replacement in pijul/Cargo.toml at line 63
    [7.25][7.197800:197856](),[7.2798][7.197800:197856](),[7.84][7.197800:197856](),[7.43][7.197800:197856](),[7.308][7.197800:197856](),[7.122][7.197800:197856](),[7.1679][7.197800:197856](),[7.197800][7.197800:197856]()
    reqwest = { version = "0.10", features = [ "stream" ] }
    [7.1679]
    [7.197856]
    reqwest = { version = "0.11", features = [ "stream" ] }
  • edit in pijul/Cargo.toml at line 80
    [7.1190][7.1680:1704]()
    tokio-compat-02 = "0.1"
  • file un-deletion: block.rs (-xw-x--x--)block.rs (-xw-x--x--)
    [7.525229][7.0:10](),[7.10][7.11:11](),[7.525229][7.0:10]()
  • replacement in libpijul/Cargo.toml at line 4
    [7.1020894][5.30:57]()
    version = "1.0.0-alpha.26"
    [7.1020894]
    [7.1020920]
    version = "1.0.0-alpha.27"
  • replacement in libpijul/Cargo.toml at line 112
    [7.1023338][7.228:283]()
    zstd-seekable = { version = "0.1.5", optional = true }
    [7.1023338]
    [7.1023393]
    zstd-seekable = { version = "0.1.7", optional = true }
  • replacement in Cargo.lock at line 53
    [7.1032150][7.1032150:1032167]()
    "winapi 0.3.9",
    [7.1032150]
    [7.1032167]
    "winapi",
  • replacement in Cargo.lock at line 201
    [7.1036347][7.1036347:1036364]()
    "winapi 0.3.9",
    [7.1036347]
    [7.1036609]
    "winapi",
  • replacement in Cargo.lock at line 248
    [7.4752][7.4752:4769]()
    "winapi 0.3.9",
    [7.4752]
    [7.1038025]
    "winapi",
  • replacement in Cargo.lock at line 310
    [7.611][7.473:490]()
    "winapi 0.3.9",
    [7.611]
    [7.490]
    "winapi",
  • replacement in Cargo.lock at line 320
    [7.706][7.611:628](),[7.611][7.611:628]()
    "winapi 0.3.9",
    [7.706]
    [7.628]
    "winapi",
  • replacement in Cargo.lock at line 385
    [7.1041294][7.1041294:1041311]()
    "winapi 0.3.9",
    [7.1041294]
    [7.1041311]
    "winapi",
  • replacement in Cargo.lock at line 396
    [7.1041552][7.1041552:1041569]()
    "winapi 0.3.9",
    [7.1041552]
    [7.1041569]
    "winapi",
  • replacement in Cargo.lock at line 445
    [7.322][7.322:339]()
    "winapi 0.3.9",
    [7.322]
    [7.1042767]
    "winapi",
  • replacement in Cargo.lock at line 467
    [7.1043023][7.1043023:1043040]()
    "winapi 0.3.9",
    [7.1043023]
    [7.1043040]
    "winapi",
  • replacement in Cargo.lock at line 520
    [7.1044404][7.1044404:1044421]()
    "winapi 0.3.9",
    [7.1044404]
    [7.1044421]
    "winapi",
  • edit in Cargo.lock at line 524
    [7.1044436][7.1044436:1044891]()
    name = "fuchsia-zircon"
    version = "0.3.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
    dependencies = [
    "bitflags",
    "fuchsia-zircon-sys",
    ]
    [[package]]
    name = "fuchsia-zircon-sys"
    version = "0.3.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
    [[package]]
  • replacement in Cargo.lock at line 692
    [7.1048723][7.1048723:1048741]()
    version = "0.2.7"
    [7.1048723]
    [7.1048741]
    version = "0.3.0"
  • replacement in Cargo.lock at line 694
    [7.1048806][7.1048806:1048884]()
    checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
    [7.1048806]
    [7.1048884]
    checksum = "6b67e66362108efccd8ac053abafc8b7a8d86a37e6e48fc4f6f7485eb5e9e6a5"
  • replacement in Cargo.lock at line 696
    [7.1048901][7.2247:2263]()
    "bytes 0.5.6",
    [7.1048901]
    [7.1048911]
    "bytes 1.0.0",
  • replacement in Cargo.lock at line 704
    [7.1049001][7.2264:2281]()
    "tokio 0.2.24",
    [7.1049001]
    [7.1049011]
    "tokio",
  • replacement in Cargo.lock at line 747
    [7.1049974][7.1049974:1049992]()
    version = "0.3.1"
    [7.1049974]
    [7.1049992]
    version = "0.4.0"
  • replacement in Cargo.lock at line 749
    [7.1050057][7.1050057:1050135]()
    checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
    [7.1050057]
    [7.1050135]
    checksum = "2861bd27ee074e5ee891e8b539837a9430012e249d7f0ca2d795650f579c1994"
  • replacement in Cargo.lock at line 751
    [7.1050152][7.2299:2315]()
    "bytes 0.5.6",
    [7.1050152]
    [7.1050162]
    "bytes 1.0.0",
  • replacement in Cargo.lock at line 790
    [7.1051305][7.1051305:1051324]()
    version = "0.13.9"
    [7.1051305]
    [7.1051324]
    version = "0.14.2"
  • replacement in Cargo.lock at line 792
    [7.1051389][7.1051389:1051467]()
    checksum = "f6ad767baac13b44d4529fcf58ba2cd0995e36e7b435bc5b039de6f47e880dbf"
    [7.1051389]
    [7.1051467]
    checksum = "12219dc884514cb4a6a03737f4413c0e01c23a1b059b0156004b23f1e19dccbe"
  • replacement in Cargo.lock at line 794
    [7.1051484][7.2316:2332]()
    "bytes 0.5.6",
    [7.1051484]
    [7.1051494]
    "bytes 1.0.0",
  • replacement in Cargo.lock at line 806
    [7.1051647][7.2333:2350]()
    "tokio 0.2.24",
    [7.1051647]
    [7.1051657]
    "tokio",
  • replacement in Cargo.lock at line 814
    [7.1051730][7.1051730:1051748]()
    version = "0.4.3"
    [7.1051730]
    [7.1051748]
    version = "0.5.0"
  • replacement in Cargo.lock at line 816
    [7.1051813][7.1051813:1051891]()
    checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
    [7.1051813]
    [7.1051891]
    checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  • replacement in Cargo.lock at line 818
    [7.1051908][7.2351:2367]()
    "bytes 0.5.6",
    [7.1051908]
    [7.1051918]
    "bytes 1.0.0",
  • replacement in Cargo.lock at line 821
    [7.1051943][7.2368:2385](),[7.2385][7.1051953:1051967](),[7.1051953][7.1051953:1051967]()
    "tokio 0.2.24",
    "tokio-tls",
    [7.1051943]
    [7.1051967]
    "tokio",
    "tokio-native-tls",
  • edit in Cargo.lock at line 883
    [7.1053039][7.1053039:1053256]()
    ]
    [[package]]
    name = "iovec"
    version = "0.1.4"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
    dependencies = [
    "libc",
  • edit in Cargo.lock at line 913
    [7.1054082][7.1054082:1054331]()
    ]
    [[package]]
    name = "kernel32-sys"
    version = "0.2.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
    dependencies = [
    "winapi 0.2.8",
    "winapi-build",
  • replacement in Cargo.lock at line 943
    [7.560][5.88:115]()
    version = "1.0.0-alpha.26"
    [7.560]
    [7.729]
    version = "1.0.0-alpha.27"
  • replacement in Cargo.lock at line 970
    [7.1055842][7.2414:2430]()
    "tokio 1.0.1",
    [7.1055842]
    [7.1055852]
    "tokio",
  • replacement in Cargo.lock at line 1064
    [7.1058144][7.1058144:1058161]()
    "winapi 0.3.9",
    [7.1058144]
    [7.1058161]
    "winapi",
  • edit in Cargo.lock at line 1074
    [7.1058365][7.1058365:1058599]()
    name = "mime_guess"
    version = "2.0.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
    dependencies = [
    "mime",
    "unicase",
    ]
    [[package]]
  • edit in Cargo.lock at line 1081
    [7.1058820][7.1058820:1058848](),[7.1058848][7.11710:11729](),[7.11729][7.1058867:1058932](),[7.1058867][7.1058867:1058932](),[7.1058932][7.11730:11808](),[7.11808][7.1059010:1059131](),[7.1059010][7.1059010:1059131](),[7.1059131][7.2431:2446](),[7.2446][7.1059140:1059175](),[7.1059140][7.1059140:1059175]()
    ]
    [[package]]
    name = "mio"
    version = "0.6.23"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
    dependencies = [
    "cfg-if 0.1.10",
    "fuchsia-zircon",
    "fuchsia-zircon-sys",
    "iovec",
    "kernel32-sys",
    "libc",
    "log",
    "miow 0.2.2",
    "net2",
    "slab",
    "winapi 0.2.8",
  • replacement in Cargo.lock at line 1091
    [7.2566][7.2566:2581]()
    "miow 0.3.6",
    [7.2566]
    [7.2581]
    "miow",
  • replacement in Cargo.lock at line 1093
    [7.2591][7.2591:2608](),[7.2608][7.1059412:1059441](),[7.1059412][7.1059412:1059441](),[7.1059441][7.11809:11827](),[7.11827][7.1059459:1059524](),[7.1059459][7.1059459:1059524](),[7.1059524][7.11828:11906](),[7.11906][7.1059602:1059677](),[7.1059602][7.1059602:1059677]()
    "winapi 0.3.9",
    ]
    [[package]]
    name = "miow"
    version = "0.2.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
    dependencies = [
    "kernel32-sys",
    "net2",
    "winapi 0.2.8",
    "ws2_32-sys",
    [7.2591]
    [7.2609]
    "winapi",
  • replacement in Cargo.lock at line 1103
    [7.2828][7.2828:2845]()
    "winapi 0.3.9",
    [7.2828]
    [7.1059677]
    "winapi",
  • edit in Cargo.lock at line 1122
    [7.1060045][7.1060045:1060074](),[7.1060074][7.11907:11926](),[7.11926][7.1060093:1060158](),[7.1060093][7.1060093:1060158](),[7.1060158][7.11927:12005](),[7.12005][7.1060236:1060280](),[7.1060236][7.1060236:1060280](),[7.1060280][7.2846:2863]()
    ]
    [[package]]
    name = "net2"
    version = "0.2.37"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
    dependencies = [
    "cfg-if 0.1.10",
    "libc",
    "winapi 0.3.9",
  • replacement in Cargo.lock at line 1142
    [7.3071][7.1060280:1060297](),[7.1060280][7.1060280:1060297]()
    "winapi 0.3.9",
    [7.3071]
    [7.1060297]
    "winapi",
  • replacement in Cargo.lock at line 1283
    [7.1063622][7.1063622:1063639]()
    "winapi 0.3.9",
    [7.1063622]
    [7.1063639]
    "winapi",
  • replacement in Cargo.lock at line 1294
    [7.1064071][3.65:92]()
    version = "1.0.0-alpha.29"
    [7.1064071]
    [7.1064097]
    version = "1.0.0-alpha.31"
  • replacement in Cargo.lock at line 1328
    [7.1064507][7.3072:3108]()
    "tokio 1.0.1",
    "tokio-compat-02",
    [7.1064507]
    [7.1064517]
    "tokio",
  • edit in Cargo.lock at line 1385
    [7.1065701][7.1065701:1065876](),[7.1065876][7.1348:1374]()
    version = "0.1.11"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
    [[package]]
    name = "pin-project-lite"
  • replacement in Cargo.lock at line 1583
    [7.1070169][7.1070169:1070186]()
    "winapi 0.3.9",
    [7.1070169]
    [7.1070186]
    "winapi",
  • replacement in Cargo.lock at line 1588
    [7.1070218][7.12465:12485]()
    version = "0.10.10"
    [7.1070218]
    [7.1070237]
    version = "0.11.0"
  • replacement in Cargo.lock at line 1590
    [7.1070302][7.12486:12564]()
    checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c"
    [7.1070302]
    [7.1070380]
    checksum = "fd281b1030aa675fb90aa994d07187645bb3c8fc756ca766e7c3070b439de9de"
  • replacement in Cargo.lock at line 1593
    [7.1125][7.3130:3146]()
    "bytes 0.5.6",
    [7.1125]
    [7.1070418]
    "bytes 1.0.0",
  • edit in Cargo.lock at line 1606
    [7.1070569][7.1070569:1070584]()
    "mime_guess",
  • replacement in Cargo.lock at line 1608
    [7.1070620][7.1667:1694]()
    "pin-project-lite 0.2.0",
    [7.1070620]
    [7.1070641]
    "pin-project-lite",
  • replacement in Cargo.lock at line 1611
    [7.1070672][7.3147:3164](),[7.3164][7.1070682:1070696](),[7.1070682][7.1070682:1070696]()
    "tokio 0.2.24",
    "tokio-tls",
    [7.1070672]
    [7.1070696]
    "tokio",
    "tokio-native-tls",
  • replacement in Cargo.lock at line 1627
    [7.1070990][7.1070990:1071007]()
    "winapi 0.3.9",
    [7.1070990]
    [7.1071007]
    "winapi",
  • replacement in Cargo.lock at line 1686
    [7.1072600][7.1072600:1072617]()
    "winapi 0.3.9",
    [7.1072600]
    [7.1072617]
    "winapi",
  • replacement in Cargo.lock at line 1781
    [7.1075182][7.1075182:1075199]()
    "winapi 0.3.9",
    [7.1075164]
    [7.1075199]
    "winapi",
  • replacement in Cargo.lock at line 1830
    [7.1076560][7.1076560:1076577]()
    "winapi 0.3.9",
    [7.1076560]
    [7.1076577]
    "winapi",
  • replacement in Cargo.lock at line 1849
    [7.5694][7.5694:5711]()
    "winapi 0.3.9",
    [7.5694]
    [7.1076805]
    "winapi",
  • replacement in Cargo.lock at line 1915
    [7.1078565][7.3560:3576]()
    "tokio 1.0.1",
    [7.1078565]
    [7.442]
    "tokio",
  • replacement in Cargo.lock at line 1928
    [7.733][7.3675:3691]()
    "tokio 1.0.1",
    [7.733]
    [7.142883]
    "tokio",
  • replacement in Cargo.lock at line 1934
    [7.1078612][7.3692:3711]()
    version = "0.20.0"
    [7.1078612]
    [7.1078631]
    version = "0.20.1"
  • replacement in Cargo.lock at line 1936
    [7.1078696][7.3712:3790]()
    checksum = "0a96771a782fd01410957fa2e93d5c6503b09817274baac56a67845594dd7a3d"
    [7.1078696]
    [7.1078774]
    checksum = "3531bd5100ae098c91f4556f3df8d607a54bf950a1ac6f16ca82c24253b3d702"
  • replacement in Cargo.lock at line 1952
    [7.1078995][7.3791:3807]()
    "tokio 1.0.1",
    [7.1078995]
    [7.1079005]
    "tokio",
  • replacement in Cargo.lock at line 1977
    [7.1079559][7.1079559:1079576]()
    "winapi 0.3.9",
    [7.1079559]
    [7.1079576]
    "winapi",
  • edit in Cargo.lock at line 1997
    [7.1080033][7.13475:13494](),[7.13494][7.1080052:1080117](),[7.1080052][7.1080052:1080117](),[7.1080117][7.13495:13573](),[7.13573][7.1080195:1080212](),[7.1080195][7.1080195:1080212](),[7.1080212][7.3808:3824](),[7.3824][7.1080222:1080273](),[7.1080222][7.1080222:1080273](),[7.1080282][7.1080282:1080293](),[7.1080293][7.3825:3840](),[7.3840][7.1080313:1080326](),[7.1080313][7.1080313:1080326](),[7.1080326][7.2401:2429](),[7.2429][7.1080347:1080356](),[7.1080347][7.1080347:1080356](),[7.1080356][7.3841:4135]()
    version = "0.2.24"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "099837d3464c16a808060bb3f02263b412f6fafcb5d01c533d309985fbeebe48"
    dependencies = [
    "bytes 0.5.6",
    "fnv",
    "futures-core",
    "iovec",
    "lazy_static",
    "memchr",
    "mio 0.6.23",
    "num_cpus",
    "pin-project-lite 0.1.11",
    "slab",
    ]
    [[package]]
    name = "tokio"
    version = "0.3.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "720ba21c25078711bf456d607987d95bce90f7c3bea5abe1db587862e7a1e87c"
    dependencies = [
    "autocfg",
    "futures-core",
    "pin-project-lite 0.2.0",
    ]
    [[package]]
    name = "tokio"
  • replacement in Cargo.lock at line 2005
    [7.4361][7.4361:4375]()
    "mio 0.7.7",
    [7.4361]
    [7.4375]
    "mio",
  • replacement in Cargo.lock at line 2007
    [7.4388][7.4388:4415]()
    "pin-project-lite 0.2.0",
    [7.4388]
    [7.1080356]
    "pin-project-lite",
  • edit in Cargo.lock at line 2012
    [7.4431][7.4431:4725](),[7.4725][7.1080373:1080388](),[7.1080373][7.1080373:1080388]()
    name = "tokio-compat-02"
    version = "0.1.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "bb4cec419b8b6f06c32e74aae6d8c5e79646d038a38e5ea2b36045f2c3296e22"
    dependencies = [
    "bytes 0.5.6",
    "once_cell",
    "pin-project-lite 0.1.11",
    "tokio 0.2.24",
    "tokio 0.3.6",
    ]
    [[package]]
  • replacement in Cargo.lock at line 2023
    [7.1080637][7.1080637:1080674]()
    name = "tokio-tls"
    version = "0.3.1"
    [7.1080637]
    [7.1080674]
    name = "tokio-native-tls"
    version = "0.3.0"
  • replacement in Cargo.lock at line 2026
    [7.1080739][7.1080739:1080817]()
    checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
    [7.1080739]
    [7.1080817]
    checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
  • replacement in Cargo.lock at line 2029
    [7.1080849][7.4824:4841]()
    "tokio 0.2.24",
    [7.1080849]
    [7.1080859]
    "tokio",
    ]
    [[package]]
    name = "tokio-stream"
    version = "0.1.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "e4cdeb73537e63f98adcd73138af75e3f368ccaecffaa29d7eb61b9f5a440457"
    dependencies = [
    "futures-core",
    "pin-project-lite",
    "tokio",
  • replacement in Cargo.lock at line 2045
    [7.1080894][7.1080894:1080912]()
    version = "0.3.1"
    [7.1080894]
    [7.1080912]
    version = "0.6.0"
  • replacement in Cargo.lock at line 2047
    [7.1080977][7.1080977:1081055]()
    checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
    [7.1080977]
    [7.1081055]
    checksum = "36135b7e7da911f5f8b9331209f7fab4cc13498f3fff52f72a710c78187e3148"
  • replacement in Cargo.lock at line 2049
    [7.1081072][7.4842:4858]()
    "bytes 0.5.6",
    [7.1081072]
    [7.1081082]
    "bytes 1.0.0",
  • replacement in Cargo.lock at line 2053
    [7.1081124][7.2430:2458](),[7.2458][7.4859:4876]()
    "pin-project-lite 0.1.11",
    "tokio 0.2.24",
    [7.1081124]
    [7.1081155]
    "pin-project-lite",
    "tokio",
    "tokio-stream",
  • replacement in Cargo.lock at line 2080
    [7.1472][7.1081798:1081806](),[7.1081798][7.1081798:1081806](),[7.1081806][7.1473:1500]()
    "log",
    "pin-project-lite 0.2.0",
    [7.1472]
    [7.1081827]
    "pin-project-lite",
  • edit in Cargo.lock at line 2114
    [7.1082715][7.1082715:1082943]()
    [[package]]
    name = "unicase"
    version = "2.6.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
    dependencies = [
    "version_check",
    ]
  • replacement in Cargo.lock at line 2197
    [7.1085287][7.1085287:1085304]()
    "winapi 0.3.9",
    [7.1085287]
    [7.1085304]
    "winapi",
  • edit in Cargo.lock at line 2325
    [7.1102][7.1088281:1088471](),[7.1088281][7.1088281:1088471]()
    [[package]]
    name = "winapi"
    version = "0.2.8"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  • edit in Cargo.lock at line 2335
    [7.1088744][7.1088744:1088940]()
    [[package]]
    name = "winapi-build"
    version = "0.1.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  • replacement in Cargo.lock at line 2348
    [7.1089362][7.1089362:1089379]()
    "winapi 0.3.9",
    [7.1089362]
    [7.1089379]
    "winapi",
  • edit in Cargo.lock at line 2362
    [7.1089783][7.1089783:1090013]()
    dependencies = [
    "winapi 0.3.9",
    ]
    [[package]]
    name = "ws2_32-sys"
    version = "0.2.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  • replacement in Cargo.lock at line 2363
    [7.1090030][7.1090030:1090064]()
    "winapi 0.2.8",
    "winapi-build",
    [7.1090030]
    [7.1090064]
    "winapi",
  • replacement in Cargo.lock at line 2393
    [7.1090745][7.4877:4895]()
    version = "0.1.6"
    [7.1090745]
    [7.1090763]
    version = "0.1.7"
  • replacement in Cargo.lock at line 2395
    [7.1090828][7.4896:4974]()
    checksum = "29c68256da15ff4518794182c59cde0e1a824129805018bc6670d1d585fb1ba8"
    [7.1090828]
    [7.1090906]
    checksum = "3e3b99cee88f0309ca765c6aa8c284a00394c35ef8ca012e2409485fc369bf2f"