diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-22 13:29:10 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-22 13:29:10 -0500 |
| commit | 2274d33e469aca544a7aeb899a10769b973ae374 (patch) | |
| tree | 7ff10964234fd5e8917624508e249265a3d0b19c /graphics/Cargo.toml | |
| parent | audio: move 'asm' files out of data segment (diff) | |
| download | DungeonCrawl-2274d33e469aca544a7aeb899a10769b973ae374.tar.gz DungeonCrawl-2274d33e469aca544a7aeb899a10769b973ae374.tar.bz2 DungeonCrawl-2274d33e469aca544a7aeb899a10769b973ae374.zip | |
audio: refactor into seperate crate
Diffstat (limited to 'graphics/Cargo.toml')
| -rw-r--r-- | graphics/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index 0240745..0687272 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -8,6 +8,7 @@ publish.workspace = true rust-version.workspace = true [dependencies] +audio.workspace = true dungeon.workspace = true raylib.workspace = true @@ -19,7 +20,7 @@ default = [] x11 = ["raylib/GLFW_BUILD_X11"] wayland = ["raylib/wayland", "raylib/GLFW_BUILD_WAYLAND"] sdl = ["raylib/sdl", "raylib/SUPPORT_MODULE_RTEXT"] -static = [] +static = ["audio/static"] # Individual features seem to currently be # broken on windows |