lv2_urid/
lib.rs

1//! LV2 integration of the URID concept.
2//!
3//! The URID specification provides a host feature that can be used by plugins to map URIs to integers, so-called URIDs. These URIDs are used by many other specifications to identify other URI bounds and combine the flexibility of URIs with the comparison speed of integers.
4extern crate lv2_core as core;
5extern crate lv2_sys as sys;
6
7mod feature;
8mod mapper;
9
10pub use feature::*;
11pub use mapper::*;