diff options
| author | Andreas Grois <andi@grois.info> | 2024-01-24 21:40:48 +0100 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2024-01-24 21:40:48 +0100 |
| commit | 57fd648407a233ae62b2c561d902783597274f83 (patch) | |
| tree | 6c4149d45eebfd3374d18c61ff766c8e0814f322 /alsa/Cargo.toml | |
| parent | 3f362de1ab94b994ef4ccdc403cab4cb8d0d1bcb (diff) | |
Start work on ALSA volume display
Diffstat (limited to 'alsa/Cargo.toml')
| -rw-r--r-- | alsa/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/alsa/Cargo.toml b/alsa/Cargo.toml new file mode 100644 index 0000000..c89855e --- /dev/null +++ b/alsa/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "swaystatus-alsa" +version = "0.1.0" +authors = ["Andreas Grois <andi@grois.info>"] +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +swaystatus-plugin = { path = '../swaystatus-plugin', version = '*'} +serde = { version = "1.0", features = ["derive"] } +erased-serde = "0.3" + +[lib] +crate-type = ["cdylib"] |
