File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "MIT"
9
9
readme = " README.md"
10
10
repository = " https://github.com/warlock-labs/sylow.git"
11
11
name = " sylow"
12
- version = " 0.1 .0"
12
+ version = " 0.2 .0"
13
13
edition = " 2021"
14
14
rust-version = " 1.83.0"
15
15
Original file line number Diff line number Diff line change
1
+ [target .x86_64-unknown-linux-gnu ]
2
+ dockerfile = " local.dockerfile"
Original file line number Diff line number Diff line change
1
+ FROM --platform=linux/amd64 ghcr.io/cross-rs/x86_64-unknown-linux-gnu:latest
2
+
3
+ RUN apt-get update && \
4
+ apt-get install --assume-yes dpkg-dev && \
5
+ dpkg --add-architecture amd64 && \
6
+ apt-get update && \
7
+ apt-get install --assume-yes pkg-config libsodium-dev:amd64 gcc-multilib && \
8
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
9
+ . $HOME/.cargo/env && cargo install cargo-llvm-cov --locked
You can’t perform that action at this time.
0 commit comments