-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
38 lines (33 loc) · 965 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "iced_audio"
version = "0.12.0"
authors = ["Billy Messenger <https://github.com/BillyDM>"]
license = "MIT"
edition = "2021"
keywords = ["iced", "gui", "audio", "vst", "lv2"]
categories = ["gui", "visualization"]
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"
repository = "https://github.com/iced-rs/iced_audio"
readme = "README.md"
resolver = "2"
[badges]
maintenance = { status = "actively-developed" }
[workspace]
members = [
"examples/simple",
"examples/inputs_tour",
]
[features]
default = ["wgpu"]
glow = ["iced_glow"]
wgpu = ["iced_wgpu"]
[dependencies]
iced_core = "0.9"
iced_glow = { version = "0.8", optional = true }
iced_graphics = { version = "0.8", features = ["canvas"] }
iced_native = "0.10"
iced_wgpu = { version = "0.10", optional = true }
[dev-dependencies]
iced = "0.9"