Skip to content

Commit b3fd950

Browse files
committed
Adding wmidi and lv2-units to the plugin feature set
1 parent 1772868 commit b3fd950

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lv2"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Jan-Oliver 'Janonard' Opdenhövel <[email protected]>", "Adrien Prokopowicz <[email protected]>",
55
"Yruama_Lairba <[email protected]>"]
66
edition = "2018"
@@ -59,9 +59,11 @@ minimal_plugin = [
5959
]
6060
plugin = [
6161
"minimal_plugin",
62+
"lv2-urid",
63+
"lv2-units",
6264
"lv2-atom",
65+
"wmidi",
6366
"lv2-midi",
64-
"lv2-urid",
6567
]
6668
full = [
6769
"lv2-atom",

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
//!
110110
//! There are also feature sets that account for common scenarios:
111111
//! * `minimal_plugin`: The bare minimum to create plugins. Includes `lv2-core` and `urid`.
112-
//! * `plugin`: Usual crates for standard plugins. Includes `lv2-core`, `lv2-atom`, `lv2-midi`, `lv2-urid`, and `urid`. **This is the default.**
112+
//! * `plugin`: Usual crates for standard plugins. Includes `lv2-core`, `lv2-atom`, `lv2-midi` with the `wmidi` feature, `lv2-units`, `lv2-urid`, and `urid`. **This is the default.**
113113
//! * `full`: All sub-crates.
114114
//!
115115
//! # Extending

0 commit comments

Comments
 (0)