Skip to content

Commit

Permalink
Move the missing features to the main dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Dec 1, 2024
1 parent 3a3c955 commit 78f8031
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ jobs:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run doc tests
run: cargo test --doc --all-features --features bevy/bevy_asset,bevy/png
run: cargo test --doc --all-features
- name: Check docs
run: cargo doc --no-deps --all-features --features bevy/x11 --features bevy/bevy_asset,bevy/png
run: cargo doc --no-deps --all-features --features bevy/x11
docs-and-demos-ghpages:
name: Update Docs and Demos in GitHub Pages
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ anyhow = "^1"
bevy = { version = "^0.15", default-features = false, features = [
"bevy_state",
"bevy_window",
"bevy_asset",
] }
bevy_egui = { version = "^0.31", default-features = false, features = ["default_fonts", "render"] }
serde = "^1"
Expand All @@ -39,6 +40,7 @@ vpeol_2d = [
"vpeol",
"bevy/bevy_text",
"bevy/bevy_sprite",
"bevy/png",
]
vpeol_3d = [
"vpeol",
Expand Down Expand Up @@ -79,5 +81,4 @@ required-features = ["vpeol_2d", "bevy/png"]
all-features = true
features = [
"bevy/x11", # required for bevy_egui
"bevy/bevy_asset",
]

0 comments on commit 78f8031

Please sign in to comment.