Skip to content

Commit 7c4e29a

Browse files
committed
Merge branch 'develop'
2 parents 1308291 + 23c72fb commit 7c4e29a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.3.0
4+
5+
* fix clippy warnings
6+
* update to rust `1.52`
7+
38
## 0.2.0
49

510
* Improve `Dockerfile` to reduce image size

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.50-slim-buster as builder
1+
FROM rust:1.52-slim-buster as builder
22

33
RUN rustup update
44
RUN rustup target add x86_64-unknown-linux-musl

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ fn with_target_host(
120120

121121
fn with_raw_query() -> impl Filter<Extract = (String,), Error = Infallible> + Clone {
122122
warp::filters::query::raw()
123-
.or(warp::any().map(|| String::default()))
123+
.or(warp::any().map(String::default))
124124
.unify()
125125
}
126126

0 commit comments

Comments
 (0)