Skip to content

Commit

Permalink
Add required features
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Jul 6, 2023
1 parent dd57bcd commit 0e90a06
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ jobs:
sudo apt-get update
sudo apt install -y libxcb-xfixes0-dev mesa-vulkan-drivers
- run: cargo llvm-cov nextest --workspace --features mint,glam --fail-under-lines 80
- run: cargo llvm-cov nextest --workspace --features mint --fail-under-lines 80
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"rust-analyzer.cargo.features": "all",
"rust-analyzer.check.features": "all"
}
16 changes: 16 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,22 @@ codegen-units = 1
[[bench]]
name = "troughput"
harness = false
required-features = ["mint"]

[[test]]
name = "general"
path = "tests/general.rs"
required-features = ["mint"]

[[test]]
name = "hygiene"
path = "tests/hygiene.rs"
required-features = ["mint"]

[[test]]
name = "wgpu"
path = "tests/wgpu.rs"
required-features = ["mint"]

[workspace]
members = ["derive", "derive/impl"]
Expand Down

0 comments on commit 0e90a06

Please sign in to comment.