rustypot 1.4.2

Package to communicate with Dynamixel motors.
Documentation
1
2
3
4
5
6
7
8
use pyo3_stub_gen::Result;

fn main() -> Result<()> {
    env_logger::Builder::from_env(env_logger::Env::default().filter_or("RUST_LOG", "info")).init();
    let stub = rustypot::stub_info()?;
    stub.generate()?;
    Ok(())
}