bip39 1.2.0

Library for BIP-39 Bitcoin mnemonic codes
Documentation
1
2
3
4
5
6
7
8
FROM rust:1.29.0
WORKDIR /usr/src/bip39
COPY . .
# RUN --mount=type=cache,target=/usr/local/cargo/registry \
#     --mount=type=cache,target=/home/root/app/target \
#     cargo test --features=rand,all-languages
RUN cargo test --features=rand,all-languages
CMD ["/bin/bash"]