smart-locker 0.3.1

A smart locker CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM rust:latest

# Installer les dépendances système
RUN apt-get update -qq && apt-get install -y -qq \
    build-essential \
    gcc-mingw-w64 \
    curl \
    pkg-config \
    zip \
    git \
    nodejs \
    libssl-dev \
    && apt-get clean

# Installer les outils Rust
RUN rustup component add clippy rustfmt \
    && rustup target add x86_64-pc-windows-gnu \
    && cargo install git-cliff cargo-release cargo-deb cargo-generate-rpm cargo-edit