keyforge95 2.3.1

Library for product key generation / validation for Windows 95 and other Microsoft products
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM rust:latest

COPY ./ ./
RUN rustup target add wasm32-unknown-unknown && rustup component add clippy
RUN cargo generate-lockfile

# Build
RUN cargo build && cargo build --release
# Build (Wasm)
RUN cargo build --target wasm32-unknown-unknown && cargo build --target wasm32-unknown-unknown --release
# Tests
RUN cargo test
# Code analysis
RUN cargo clippy