uranium-rs 1.0.3

Lib for downloading/making minecraft and modpacks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use curse_downloader::CurseDownloader;
pub use gen_downloader::{DownloadState, DownloadableObject, Downloader, FileDownloader, HashType};
pub use minecraft_downloader::{
    get_last_release, get_last_snapshot, list_instances, MinecraftDownloadState,
    MinecraftDownloader,
};
pub use rinth_downloader::RinthDownloader;
pub use runtime_downloader::RuntimeDownloader;
pub use updater::update_modpack;

mod curse_downloader;
mod functions;
mod gen_downloader;
mod minecraft_downloader;
mod rinth_downloader;
mod runtime_downloader;
mod updater;