Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 142 additions & 2 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "RustMock"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Arthur Kowalsky <arthurkowalsky@users.noreply.github.com>"]
description = "Lightning-fast, lightweight API mock server with OpenAPI support and beautiful React dashboard"
Expand Down Expand Up @@ -43,8 +43,8 @@ regex = "1.12"
log = "0.4"
anyhow = "1.0"
open = "5.0"
reqwest = { version = "0.12", features = ["json"] }
awc = "3.8"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
awc = { version = "3.8", default-features = false, features = ["rustls-0_23"] }

[dev-dependencies]
actix-rt = "2.11"
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ COPY ui/ ./
RUN npm run build

FROM rust:1.91-slim AS rust-builder
RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY Cargo.* ./
COPY src/ ./src/
Expand Down