agate

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

commit 068077e29b4fc8696cee057facb49d49f4c55f6d
parent 0924a3a6e23ade6d305863516ab0153a377fd8b8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu,  3 Feb 2022 21:49:28 +0100

chore(deps): bump rcgen from 0.8.14 to 0.9.0 (#139)


Diffstat:
MCargo.lock | 64++++++++++++++++++++++++----------------------------------------
MCargo.toml | 2+-
2 files changed, 25 insertions(+), 41 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -43,12 +43,6 @@ dependencies = [ ] [[package]] -name = "autocfg" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" - -[[package]] name = "base64" version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -79,16 +73,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] -name = "chrono" -version = "0.4.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" -dependencies = [ - "num-integer", - "num-traits", -] - -[[package]] name = "configparser" version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -302,31 +286,21 @@ dependencies = [ ] [[package]] -name = "num-integer" -version = "0.1.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" -dependencies = [ - "autocfg", - "num-traits", -] - -[[package]] -name = "num-traits" -version = "0.2.14" +name = "num_cpus" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" dependencies = [ - "autocfg", + "hermit-abi", + "libc", ] [[package]] -name = "num_cpus" -version = "1.13.1" +name = "num_threads" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" +checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15" dependencies = [ - "hermit-abi", "libc", ] @@ -383,13 +357,13 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.8.14" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5911d1403f4143c9d56a702069d593e8d0f3fab880a85e103604d0893ea31ba7" +checksum = "b19a6d05e859d1cb69223792dde3834d3637f1095b5a3e1663745df6fb57454b" dependencies = [ - "chrono", "pem", "ring", + "time", "yasna", ] @@ -506,6 +480,16 @@ dependencies = [ ] [[package]] +name = "time" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d" +dependencies = [ + "libc", + "num_threads", +] + +[[package]] name = "tinyvec" version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -765,9 +749,9 @@ dependencies = [ [[package]] name = "yasna" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e262a29d0e61ccf2b6190d7050d4b237535fc76ce4c1210d9caa316f71dffa75" +checksum = "346d34a236c9d3e5f3b9b74563f238f955bbd05fa0b8b4efa53c130c43982f4c" dependencies = [ - "chrono", + "time", ] diff --git a/Cargo.toml b/Cargo.toml @@ -21,7 +21,7 @@ log = "0.4" mime_guess = "2.0" once_cell = "1.8" percent-encoding = "2.1" -rcgen = { version = "0.8.14" } +rcgen = { version = "0.9.0" } rustls = "0.20.1" tokio-rustls = "0.23.2" tokio = { version = "1.15", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] }