Skip to content

Commit

Permalink
Load external libraries dynamically (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbittich committed Sep 23, 2023
1 parent d7b87c6 commit 50fe3b0
Show file tree
Hide file tree
Showing 51 changed files with 1,216 additions and 528 deletions.
5 changes: 3 additions & 2 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[build]
target = "x86_64-unknown-linux-musl"
#[build]
# disabled to allow dynamic library loading
#target = "x86_64-unknown-linux-musl"
2 changes: 1 addition & 1 deletion .github/workflows/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: x86_64-unknown-linux-musl
# targets: x86_64-unknown-linux-musl
- run: cargo test --verbose -- --nocapture
docker:
needs: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: x86_64-unknown-linux-musl
# targets: x86_64-unknown-linux-musl
- run: cargo test --verbose -- --nocapture
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo publish --dry-run
Loading

0 comments on commit 50fe3b0

Please sign in to comment.