agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit 9bf3cb84c24ce8ee0860c16ffa16a97fc10ba39a
parent ddb3ff4c1c5898a684a057013a2937102640d4e8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue, 22 Feb 2022 20:58:42 +0100

chore(deps): bump tokio from 1.16.1 to 1.17.0 (#148)


Diffstat:
MCargo.lock | 19+++++++++++++++----
MCargo.toml | 2+-
2 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -256,9 +256,9 @@ dependencies = [ [[package]] name = "mio" -version = "0.7.14" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" +checksum = "ba272f85fa0b41fc91872be579b3bbe0f56b792aa361a380eb669469f68dafb2" dependencies = [ "libc", "log", @@ -434,6 +434,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" [[package]] +name = "socket2" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" +dependencies = [ + "libc", + "winapi", +] + +[[package]] name = "spin" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -506,9 +516,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.16.1" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c27a64b625de6d309e8c57716ba93021dccf1b3b5c97edd6d3dd2d2135afc0a" +checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee" dependencies = [ "bytes", "libc", @@ -516,6 +526,7 @@ dependencies = [ "mio", "num_cpus", "pin-project-lite", + "socket2", "tokio-macros", "winapi", ] diff --git a/Cargo.toml b/Cargo.toml @@ -24,7 +24,7 @@ percent-encoding = "2.1" rcgen = { version = "0.9.0" } rustls = "0.20.1" tokio-rustls = "0.23.2" -tokio = { version = "1.16", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] } +tokio = { version = "1.17", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] } url = "2.2.2" webpki = "0.22.0"