simetry 0.2.3

Interface with telemetry of various racing and driving sims
Documentation
1
2
3
4
5
6
7
8
9
#[tokio::test]
async fn compiles_if_send_is_valid() {
    let task = tokio::spawn(async move {
        let mut client = simetry::connect().await;
        let moment = client.next_moment().await.unwrap();
        println!("{}", moment.vehicle_gear().unwrap_or_default());
    });
    task.abort();
}