Skip to content

lib: remove ffi from default features #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
- run: cargo clippy
- run: cargo test
- run: cargo clippy --all-features
- run: cargo test --all-features

test_lib_windows:
name: Build and test library (Windows)
Expand All @@ -34,8 +34,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
- run: cargo clippy
- run: cargo test
- run: cargo clippy --all-features
- run: cargo test --all-features

build_app_linux:
name: Build Linux application
Expand Down
Loading