Closed chrstn-hntschl closed 4 years ago
What version of rust are you using (Output of rustc --version
)
I downgraded the protobuf version, currently checking that everything works. If it does I will upload a new version to crates and post here again
Version 0.2.1
is now uploaded to crates.io
Thanks - does work now! Here is a Dockerfile to build with all necessary depenencies:
FROM rust:1.42.0-slim-stretch
# Ignore APT warnings about not having a TTY
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -qq -y --no-install-recommends \
libssl-dev pkg-config libsqlite3-dev
RUN cargo install signal-backup-decode
ENTRYPOINT ["signal-backup-decode"]
CMD ["--help"]
Oh nice. If you want you can open a Pull Request to add that dockerfile. I'd be happy to merge that
The provided
cargo install signal-backup-decode
fails withI assume this error is not in signal-backup-decode, but maybe the protobuf dependency needs to be updated? I am trying to build under debian stretch.