Skip to content

Commit f36805e

Browse files
committed
Merge branch 'master'@v0.3.8 into headers_encoding
2 parents 681c1a5 + 796dce8 commit f36805e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on: [push, pull_request]
44

55
env:
6-
minrust: 1.46.0
6+
minrust: 1.51.0
77

88
jobs:
99
test:

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "headers"
3-
version = "0.3.7" # don't forget to update html_root_url
3+
version = "0.3.8" # don't forget to update html_root_url
44
description = "typed HTTP headers"
55
license = "MIT"
66
readme = "README.md"
@@ -24,7 +24,7 @@ bitflags = "1.0"
2424
itertools = "0.9"
2525
bytes = "1"
2626
mime = "0.3.14"
27-
sha-1 = "0.10"
27+
sha1 = "0.10"
2828
httpdate = "1"
2929

3030
[features]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![deny(missing_debug_implementations)]
33
#![cfg_attr(test, deny(warnings))]
44
#![cfg_attr(all(test, feature = "nightly"), feature(test))]
5-
#![doc(html_root_url = "https://docs.rs/headers/0.3.7")]
5+
#![doc(html_root_url = "https://docs.rs/headers/0.3.8")]
66

77
//! # Typed HTTP Headers
88
//!

0 commit comments

Comments
 (0)