longshot 0.1.9

API and CLI for ECAM-based Delonghi machines
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM rust:latest

# We need this stuff to build
RUN apt-get update && apt-get install -y libdbus-1-dev pkg-config
# Warm the crates.io cache
RUN cargo init --name temp && cargo add tokio && cargo build

# Build
COPY . /source/
WORKDIR /source/
RUN cargo build