Skip to content

Commit

Permalink
Try to fix .cargo/config.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Fethbita committed Oct 6, 2024
1 parent 1d43181 commit fc2012f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
10 changes: 3 additions & 7 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
rustflags = [
"-C", "target-feature=-crt-static",
]

rustdocflags = [
"-C", "target-feature=-crt-static",
]
[build]
rustflags = ["-C", "target-feature=-crt-static"]
rustdocflags = ["-C", "target-feature=-crt-static"]
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
apk add --no-cache pcsc-lite-dev # For pcsc dependency
apk add --no-cache musl-dev # For tracing-attributes dependency (needs crti.o)
apk add --no-cache pkgconf openssl-dev openssl-libs-static gcc make perl-dev # For openssl dependency (see https://github.com/Fethbita/emrtd/pull/3, https://github.com/rust-lang/docker-rust/issues/167)
cargo install --version 0.20.1 cargo-audit # For audit step
cargo install --version 0.15.1 cargo-msrv # For latest supported rust version
# cargo install --version 0.20.1 cargo-audit # For audit step
# cargo install --version 0.15.1 cargo-msrv # For latest supported rust version
- name: Build
run: cargo build --all-features --verbose
Expand Down

0 comments on commit fc2012f

Please sign in to comment.