From eac1960c97d67b4bdf56557cd8bc2ed3e39d503c Mon Sep 17 00:00:00 2001 From: Ben Hansen Date: Thu, 14 Dec 2023 12:29:35 -0500 Subject: [PATCH] add awedio crate and new playback tag I added awedio is a performant and adaptable playback library I have been working on. I removed the MIDI tag from rodio since the crate does not directly support MIDI and in fact midi never appears in its API. I added a new tag "playback" to "rodio", "kira", and "awedio". Test by running `zola serve` and verifying expected results. --- content/crates.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/content/crates.toml b/content/crates.toml index 4b13c19..e3a9cbb 100644 --- a/content/crates.toml +++ b/content/crates.toml @@ -66,12 +66,17 @@ tags = ["languages", "DSP"] [[crates]] key = "rodio" source = "crates" -tags = ["MIDI"] +tags = ["playback"] [[crates]] key = "kira" source = "crates" -tags = ["games"] +tags = ["games", "playback"] + +[[crates]] +key = "awedio" +source = "crates" +tags = ["playback", "embedded"] [[crates]] key = "rubato"