gxccd 0.1.2

Rust wrapper and CLI tool around gxccd C library
Documentation
1
2
3
4
5
6
7
8
FROM rust:1.67
WORKDIR /app
RUN apt-get update -y
RUN apt-get install -y libusb-1.0-0-dev
RUN git clone https://github.com/jcranney/gxccd-wrap
RUN cargo build --release --manifest-path=./gxccd-wrap/Cargo.toml
RUN cargo install --path=./gxccd-wrap
CMD ["gxccd"]