diff --git a/.github/workflows/check-pr.yaml b/.github/workflows/check-pr.yaml index 03177e98..134fc8b3 100644 --- a/.github/workflows/check-pr.yaml +++ b/.github/workflows/check-pr.yaml @@ -40,7 +40,7 @@ jobs: - name: Lint run: | - cargo clippy --manifest-path=./dotlottie-rs/Cargo.toml --all-targets --all-features -- -D clippy::print_stdout - cargo clippy --manifest-path=./dotlottie-ffi/Cargo.toml --all-targets --all-features -- -D clippy::print_stdout + cargo clippy --manifest-path=./dotlottie-rs/Cargo.toml --all-targets -- -D clippy::print_stdout + cargo clippy --manifest-path=./dotlottie-ffi/Cargo.toml --all-targets -- -D clippy::print_stdout env: RUSTFLAGS: "-Dwarnings" diff --git a/Makefile b/Makefile index 9ad975ef..b9789796 100644 --- a/Makefile +++ b/Makefile @@ -405,7 +405,8 @@ define UNIFFI_BINDINGS_BUILD rm -rf $(RUNTIME_FFI)/$(RUNTIME_FFI_UNIFFI_BINDINGS)/$(BINDINGS_LANGUAGE) cargo run \ --manifest-path $(RUNTIME_FFI)/Cargo.toml \ - --features=uniffi/cli \ + --no-default-features \ + --features=uniffi/cli,thorvg-v1 \ --bin uniffi-bindgen \ generate $(RUNTIME_FFI)/src/dotlottie_player.udl \ --language $(BINDINGS_LANGUAGE) \