iced_audio 0.4.0

An extension to the Iced GUI library with useful widgets for audio applications
Documentation
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in library 'iced_audio'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--lib",
                    "--package=iced_audio"
                ],
                "filter": {
                    "name": "iced_audio",
                    "kind": "lib"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug example 'tour'",
            "cargo": {
                "args": [
                    "build",
                    "--example=tour",
                    "--package=iced_audio"
                ],
                "filter": {
                    "name": "tour",
                    "kind": "example"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in example 'tour'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--example=tour",
                    "--package=iced_audio"
                ],
                "filter": {
                    "name": "tour",
                    "kind": "example"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}