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
/// Arguments from [`VersionData`](version_data::VersionData).
pub mod arguments;
/// Asset index that contains the indexes for different versions.
pub mod asset_index;
/// Assets for a specific game version.
pub mod asset_index_data;
/// Downloads of the client/server  from [`VersionData`](version_data::VersionData).
pub mod downloads;
/// Extract information for [`Library`](library::Library).
pub mod extract;
/// File information used in other models.
pub mod file;
/// Library from [`VersionData`](version_data::VersionData).
pub mod library;
/// Downloads from [`Library`](library::Library).
pub mod library_downloads;
/// Information about logging from [`VersionData`](version_data::VersionData).
pub mod logging_info;
/// Information about natives from [`Library`](library::Library).
pub mod natives;
/// Rule for when to use certain libraries or options.
pub mod rule;
/// Version data that is the root of all needed information to install Minecraft.
pub mod version_data;
/// Version manifest that contains all Minecraft versions and a link to the corresponding [`VersionData`](version_data::VersionData).
pub mod version_manifest;
/// Short summary of a Minecraft version from the [`VersionManifest`](version_manifest::VersionManifest).
pub mod version_summary;
/// Type of a Minecraft version.
pub mod version_type;