Make java stuff public, fix forge erroring out due to ratelimiting

This commit is contained in:
Jai A
2021-12-19 15:09:36 -07:00
parent 5a6c06c8a3
commit 2a588d1e9a
5 changed files with 305 additions and 283 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "daedalus"
version = "0.1.8"
version = "0.1.9"
authors = ["Jai A <jaiagr+gpg@pm.me>"]
edition = "2018"
license = "MIT"

View File

@@ -233,9 +233,9 @@ pub struct LibraryExtract {
/// Information about the java version the game needs
pub struct JavaVersion {
/// The component needed for the Java installation
component: String,
pub component: String,
/// The major Java version number
major_version: u32,
pub major_version: u32,
}
#[derive(Serialize, Deserialize, Debug)]