Skip to content
Snippets Groups Projects
Commit 68889003 authored by Linfeng Qian's avatar Linfeng Qian
Browse files

Use openssl

parent 303fbb53
No related branches found
No related tags found
No related merge requests found
......@@ -559,6 +559,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.22.0+1.1.1q"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.75"
......@@ -568,6 +577,7 @@ dependencies = [
"autocfg 1.1.0",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
......@@ -911,6 +921,7 @@ dependencies = [
"mime_guess 2.0.4",
"multipart",
"open",
"openssl",
"path-dedot",
"percent-encoding 2.1.0",
"pretty-bytes",
......
......@@ -21,6 +21,7 @@ pretty-bytes = "0.2.2"
rand = "0.8.3"
url = "2.1.0"
hyper-native-tls = { version = "0.3.0", optional = true }
openssl = { version = "0.10", features = ["vendored"], optional = true }
mime_guess = "2.0"
open = "1"
# Iron crates
......@@ -33,4 +34,5 @@ path-dedot = "1"
[features]
default = ["tls"]
only-openssl = ["tls", "openssl"]
tls = ["hyper-native-tls"]
......@@ -7,7 +7,12 @@ FROM rust:1.61-alpine3.15 as builder
ARG BRANCH
RUN apk add --no-cache --virtual .build-deps git make musl-dev openssl-dev perl pkgconfig \
&& git clone -b $BRANCH https://github.com/TheWaWaR/simple-http-server.git /simple-http-server \
&& RUSTFLAGS='-C link-arg=-s' cargo build --release --target x86_64-unknown-linux-musl --manifest-path=/simple-http-server/Cargo.toml
&& RUSTFLAGS='-C link-arg=-s' cargo build \
--features only-openssl
--no-default-features \
--release \
--target x86_64-unknown-linux-musl \
--manifest-path=/simple-http-server/Cargo.toml
FROM gcr.io/distroless/static:nonroot
LABEL maintainer="thewawar <thewawar@gmail.com>" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment