index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2021-11-04 22:04:54.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2021-11-04 22:04:54.0 +00:00:00
commit
e127a1f4323cec1f31ea0edc15596e3ed0c07cd6 [patch]
tree
e29ccf3c5f4f2b83bf0c056ad34836a73a232862
parent
c264f2f5b3d013c300b7ca3ddc29fecd1ad79fe0
download
e127a1f4323cec1f31ea0edc15596e3ed0c07cd6.tar.gz

chore: update dependencies 04.11.2021



Diff

 .github/workflows/devel.yml |  2 +-
 Cargo.lock                  | 12 ++++++------
 Cargo.toml                  | 10 +++++-----
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/devel.yml b/.github/workflows/devel.yml
index a59c2f6..a482a80 100644
--- a/.github/workflows/devel.yml
+++ b/.github/workflows/devel.yml
@@ -46,7 +46,7 @@ jobs:
          # Specific Rust channels 
          - build: pinned
            os: ubuntu-20.04
            rust: 1.56.0
            rust: 1.56.1
          - build: stable
            os: ubuntu-20.04
            rust: stable
diff --git a/Cargo.lock b/Cargo.lock
index e3d0da9..d60ff8f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -34,9 +34,9 @@ dependencies = [

[[package]]
name = "anyhow"
version = "1.0.44"
version = "1.0.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"
checksum = "ee10e43ae4a853c0a3591d4e2ada1719e553be18199d9da9d4a83f5927c2f5c7"

[[package]]
name = "async-compression"
@@ -318,24 +318,24 @@ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"

[[package]]
name = "headers"
version = "0.3.4"
source = "git+https://github.com/joseluisq/hyper-headers.git?branch=headers_encoding#ca704fcb605adf33f327d0f5a41d5072606058a1"
version = "0.3.5"
source = "git+https://github.com/joseluisq/hyper-headers.git?branch=headers_encoding#0961ee1f9f3f770c8c7e88fc1313677fcf97152f"
dependencies = [
 "base64",
 "bitflags",
 "bytes",
 "headers-core",
 "http",
 "httpdate",
 "itertools",
 "mime",
 "sha-1",
 "time",
]

[[package]]
name = "headers-core"
version = "0.2.0"
source = "git+https://github.com/joseluisq/hyper-headers.git?branch=headers_encoding#ca704fcb605adf33f327d0f5a41d5072606058a1"
source = "git+https://github.com/joseluisq/hyper-headers.git?branch=headers_encoding#0961ee1f9f3f770c8c7e88fc1313677fcf97152f"
dependencies = [
 "http",
]
diff --git a/Cargo.toml b/Cargo.toml
index 038a904..1a83f62 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,9 +29,9 @@ path = "src/bin/server.rs"

[dependencies]
anyhow = "1.0"
async-compression = { version = "0.3", features = ["brotli", "deflate", "gzip", "tokio"] }
async-compression = { version = "0.3", default-features = false, features = ["brotli", "deflate", "gzip", "tokio"] }
bcrypt = "0.10"
bytes = "1.0"
bytes = "1.1"
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
headers = { git = "https://github.com/joseluisq/hyper-headers.git", branch = "headers_encoding" }
http = "0.2"
@@ -43,10 +43,10 @@ num_cpus = { version = "1.13" }
percent-encoding = "2.1"
pin-project = "1.0"
structopt = { version = "0.3", default-features = false }
time = "0.1"
time = { version = "0.1", default-features = false }
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros", "fs", "io-util", "signal"] }
tokio-rustls = { version = "0.22" }
tokio-util = { version = "0.6", features = ["io"] }
tokio-util = { version = "0.6", default-features = false, features = ["io"] }
tracing = { version = "0.1", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3", features = ["smallvec", "fmt", "ansi", "tracing-log", "std"] }

@@ -58,7 +58,7 @@ signal-hook = { version = "0.3", features = ["extended-siginfo"] }
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"], default-features = false }

[dev-dependencies]
bytes = "1.0"
bytes = "1.1"

[profile.release]
codegen-units = 1