wormhole-common 0.2.0

Common code for the Wormhole mod manager project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug)]
pub struct LatestSchema {
    pub friendly_version: String,
    pub game_version: String,
    pub id: i32,
    pub created: String,
    pub download_path: String,
    pub changelog: Option<String>,
    pub downloads: i32,
}