hyperlane_techempower 0.1.4

A lightweight, high-performance, and cross-platform Rust HTTP server library built on Tokio. It simplifies modern web service development by providing built-in support for middleware, WebSocket, Server-Sent Events (SSE), and raw TCP communication. With a unified and ergonomic API across Windows, Linux, and MacOS, it enables developers to build robust, scalable, and event-driven network applications with minimal overhead and maximum flexibility.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1.93

RUN apt-get update -yqq && apt-get install -yqq cmake g++ binutils lld

ENV POSTGRES_URL=postgres://benchmarkdbuser:benchmarkdbpass@tfb-database:5432/hello_world

ADD ./ /hyperlane_techempower
WORKDIR /hyperlane_techempower

RUN cargo clean
RUN cargo build --release

EXPOSE 8080

CMD ./target/release/hyperlane_techempower