unity-hub 0.6.1

Wrapper library around Unity hub to fetch and manipulate Unity Hub configs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::io;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum UnityError {
    #[error("modules.json not found")]
    ModulesJsonNotFound {
        #[from]
        source: io::Error,
    },

    #[error("Failed to parse modules json")]
    ModulesJsonParseError(#[from] serde_json::Error),
}