1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
[package]
name = "pulsectl-rs"
version = "0.3.2"
authors = ["Kristopher Ruzic <krruzic@gmail.com>"]
edition = "2018"
license = "GPL-3.0-or-later"
description = "A higher level API for libpulse-binding"
readme = "README.md"
keywords = ["pulse", "pulseaudio", "binding", "audio", "api"]
categories = ["api-bindings", "multimedia::audio"]
homepage = "https://github.com/SeaDve/pulsectl-rs"
repository = "https://github.com/SeaDve/pulsectl-rs"
[lib]
name = "pulsectl"
path = "src/lib.rs"
[dependencies]
pulse = { version = "2.24.0", package = "libpulse-binding" }
|