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 /audio/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 'audio/Cargo.toml')
| -rw-r--r-- | audio/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/audio/Cargo.toml b/audio/Cargo.toml new file mode 100644 index 0000000..58f18a2 --- /dev/null +++ b/audio/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "audio" +version.workspace = true +authors.workspace = true +edition.workspace = true +license.workspace = true +publish.workspace = true +rust-version.workspace = true + +[dependencies] +raylib.workspace = true + +[lints] +workspace = true + +[features] +default = [] +static = [] |