diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e8cd7aa85c..e4baee9a67 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -111,7 +111,7 @@ jobs: echo "::endgroup::" echo "::group::Build WGPU example for Android" - cargo apk build -p example-runner-wgpu --lib --features use-installed-tools --no-default-features + cargo apk build -p example-runner-wgpu --lib --crate-type cdylib --features use-installed-tools --no-default-features echo "::endgroup::" # This just allows us to branch protect on this one job rather needing to change diff --git a/examples/runners/wgpu/Cargo.toml b/examples/runners/wgpu/Cargo.toml index b28d1d0d98..b55d58ddaf 100644 --- a/examples/runners/wgpu/Cargo.toml +++ b/examples/runners/wgpu/Cargo.toml @@ -7,9 +7,6 @@ edition.workspace = true license.workspace = true repository.workspace = true -[lib] -crate-type = ["lib", "cdylib"] - # See rustc_codegen_spirv/Cargo.toml for details on these features [features] default = ["use-compiled-tools"]