1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct GameVersion {
pub id: String,
pub downloads: Downloads,
#[serde(rename = "assetIndex")]
pub asset_index: AssetIndex,
pub libraries: Vec<Library>,
#[serde(rename = "mainClass")]
pub main_class: String,
#[serde(rename = "minecraftArguments")]
pub minecraft_arguments: Option<String>,
pub arguments: Option<Arguments>,
#[serde(rename = "javaVersion")]
pub java_version: Option<JavaVersion>,
}
#[derive(Debug, Deserialize)]
pub struct Downloads {
pub client: DownloadArtifact,
pub server: Option<DownloadArtifact>,
}
#[derive(Debug, Deserialize, Clone)]
pub struct DownloadArtifact {
pub sha1: String,
pub size: u64,
pub url: String,
pub path: Option<String>,
}
#[derive(Debug, Deserialize)]
pub struct AssetIndex {
pub id: String,
pub sha1: String,
pub size: u64,
pub url: String,
#[serde(rename = "totalSize")]
pub total_size: u64,
}
#[derive(Debug, Deserialize)]
pub struct Library {
pub downloads: Option<LibraryDownloads>,
pub name: String,
pub rules: Option<Vec<Rule>>,
pub natives: Option<serde_json::Value>,
}
#[derive(Debug, Deserialize)]
pub struct Rule {
pub action: String, // "allow" or "disallow"
pub os: Option<OsRule>,
}
#[derive(Debug, Deserialize)]
pub struct OsRule {
pub name: Option<String>, // "linux", "osx", "windows"
pub version: Option<String>, // Regex
pub arch: Option<String>, // "x86"
}
#[derive(Debug, Deserialize)]
pub struct LibraryDownloads {
pub artifact: Option<DownloadArtifact>,
pub classifiers: Option<serde_json::Value>, // Complex, simplifying for now
}
#[derive(Debug, Deserialize)]
pub struct Arguments {
pub game: Option<serde_json::Value>,
pub jvm: Option<serde_json::Value>,
}
#[derive(Debug, Deserialize)]
pub struct JavaVersion {
pub component: String,
#[serde(rename = "majorVersion")]
pub major_version: u64,
}
|