[package]
edition = "2024"
name = "iced_audio"
version = "0.13.0"
authors = [
"Billy Messenger <https://github.com/BillyDM>",
"MichaĆ Kalbarczyk <https://github.com/fazibear>",
"Oliver Rockstedt <https://github.com/sourcebox>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An extension to the Iced GUI library with useful widgets for audio applications"
homepage = "https://github.com/iced-rs/iced_audio"
documentation = "https://docs.rs/iced_audio"
readme = "README.md"
keywords = [
"iced",
"audio",
"plugin",
"vst",
"clap",
]
categories = [
"gui",
"visualization",
]
license = "MIT"
repository = "https://github.com/iced-rs/iced_audio"
[package.metadata.docs.rs]
all-features = true
[features]
default = [
"knob",
"h_slider",
"v_slider",
"ramp",
"xy_pad",
"mod_range_input",
]
docs = [
"iced/x11",
"iced/thread-pool",
]
h_slider = []
knob = []
mod_range_input = []
ramp = []
texture = ["iced/image"]
v_slider = []
xy_pad = []
[lib]
name = "iced_audio"
path = "src/lib.rs"
[[example]]
name = "h_slider"
path = "examples/h_slider.rs"
[[example]]
name = "knob"
path = "examples/knob.rs"
[[example]]
name = "mod_range"
path = "examples/mod_range.rs"
[[example]]
name = "ramp"
path = "examples/ramp.rs"
[[example]]
name = "v_slider"
path = "examples/v_slider.rs"
[[example]]
name = "xy_pad"
path = "examples/xy_pad.rs"
[dependencies.iced]
version = "0.14.0"
features = [
"advanced",
"canvas",
]
default-features = false
[dev-dependencies.iced]
version = "0.14.0"
default-features = true