Predict failure before it happens. Detects when a signal's structure changes — before thresholds fire. Spacecraft, finance, text, IoT. 85x faster than Python. no_std.
FROM rust:1.80-slim AS builder
WORKDIR /app
COPY . .
RUN cargo build --release --bin struktura
FROM debian:bookworm-slim
COPY --from=builder /app/target/release/struktura /usr/local/bin/
ENTRYPOINT ["struktura"]
CMD ["--help"]