agate

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

commit 5394793b445327ecfc43ce55da0e1018c6af38f0
parent a515d508ac3d2c565d429a9a255788754263ff3f
Author: Matt Brubeck <mbrubeck@limpet.net>
Date:   Fri, 20 Nov 2020 13:50:42 -0800

Disable some optional dependencies

Diffstat:
MCargo.lock | 37-------------------------------------
MCargo.toml | 2+-
2 files changed, 1 insertion(+), 38 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -15,15 +15,6 @@ dependencies = [ ] [[package]] -name = "aho-corasick" -version = "0.7.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5" -dependencies = [ - "memchr", -] - -[[package]] name = "async-channel" version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -228,7 +219,6 @@ dependencies = [ "atty", "humantime", "log", - "regex", "termcolor", ] @@ -468,24 +458,6 @@ dependencies = [ ] [[package]] -name = "regex" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", - "thread_local", -] - -[[package]] -name = "regex-syntax" -version = "0.6.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189" - -[[package]] name = "ring" version = "0.16.15" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -556,15 +528,6 @@ dependencies = [ ] [[package]] -name = "thread_local" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" -dependencies = [ - "lazy_static", -] - -[[package]] name = "tinyvec" version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/Cargo.toml b/Cargo.toml @@ -18,7 +18,7 @@ once_cell = "1.4" rustls = "0.18.0" url = "2.1" log = "0.4" -env_logger = "0.8" +env_logger = { version = "0.8", default-features = false, features = ["atty", "humantime", "termcolor"] } [profile.release] lto = true