1
2
3
4
5
6
7
8
9
//! This crate provides access and control for Rez TranceVibrator devices

extern crate libusb;

// Only provide outside access via get_devices. Everything should be generated
// from the output there.
pub use ::libtrancevibe::{get_devices, TranceVibeDeviceInfo, TranceVibeDevice};

mod libtrancevibe;