unity-asset 0.2.0

A comprehensive Rust library for parsing Unity asset files (YAML and binary formats)
Documentation
1
2
3
4
5
6
7
8
use unity_asset::environment::Environment;

fn assert_send_sync<T: Send + Sync>() {}

#[test]
fn environment_is_send_sync() {
    assert_send_sync::<Environment>();
}