tapsilat 2026.4.3

The Tapsilat SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1.75-slim

# Install pkg-config and libssl-dev for ureq if needed (though ureq is pure rust mostly)
RUN apt-get update && apt-get install -y pkg-config libssl-dev ca-certificates && rm -rf /var/lib/apt/lists/*

WORKDIR /app

# Copy source code
COPY . .

# Build dependencies and code
RUN cargo build --locked

# Default command
CMD ["cargo", "test"]