Skip to content

Commit

Permalink
Added dependency to github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon Teichroeb committed Sep 17, 2024
1 parent 05d672c commit 66fd05c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt install -y libsdl2-dev
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
sdl2 = { version = "0.37.0", features = ["gfx"] }
sdl2 = { version = "0.37.0", default-features = false, features = ["gfx"] }
itertools = "0.8.2"
glium = "0.35.0"
clap = { version="4.5.16", features=["derive"] }

0 comments on commit 66fd05c

Please sign in to comment.