Skip to content

Commit

Permalink
remove openssl from dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcgroul committed Oct 5, 2023
1 parent 4280be7 commit ffc7346
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 165 deletions.
163 changes: 0 additions & 163 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ libc = "0.2.147"
prefix-hex = { version = "0.7.1", features = ["std"] }
prost = "0.11"
prost-types = "0.11"
reqwest = { version = "0.11", features = ["json"] }
reqwest = { version = "0.11", features = ["json"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.103"
tokio = { version = "1.29", features = ["macros", "rt-multi-thread"] }
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /firehose-grpc
COPY ./ .
RUN cargo build --release

FROM debian:bullseye-slim
FROM debian:bookworm-slim
RUN apt-get update && apt-get install ca-certificates -y
WORKDIR /firehose-grpc
COPY --from=builder /firehose-grpc/target/release/firehose-grpc ./firehose-grpc
Expand Down

0 comments on commit ffc7346

Please sign in to comment.