Skip to content

Commit 14007d3

Browse files
committed
jhg
1 parent 678eb24 commit 14007d3

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
save-if: ${{ github.ref == 'refs/heads/main' }}
7979

8080
- name: Check documentation
81-
run: cargo doc --workspace --document-private-items --no-deps
81+
run: cargo doc --workspace --no-default-features --document-private-items --no-deps
8282

8383
# Run tests
8484

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ exclude = ["assets/example.gif", "assets/example3d.gif"]
1313

1414
[features]
1515
default = [
16-
# In practice, this feature flag is not required as we use optional parameters for our Bevy systems.
16+
# In practice, this feature flag is not required as we use optional arguments for our Bevy systems.
1717
# However, the Github Action's environment does not support winit, which is a transitive dependency of bevy/custom_cursor.
18-
# So hiding this behind a feature allows us to run tests with --no-default-features on the CI server and circumvent the issue.
18+
# So hiding this behind a feature allows us to run tests with --no-default-features in that specific context and circumvent the issue.
1919
"custom_cursor"
2020
]
2121
custom_cursor = ["bevy/custom_cursor"]
@@ -38,5 +38,6 @@ clap = { version = "4.5.16", features = ["derive"] }
3838
rand = "0.9"
3939

4040
[lints.clippy]
41+
# Bevy systems can have a lot of arguments
4142
too_many_arguments = "allow"
4243
type_complexity = "allow"

0 commit comments

Comments
 (0)