1.4.1 Prevent crash
This commit is contained in:
parent
be9b3d7bf5
commit
7dc26b7af2
2 changed files with 11 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "obsessed-yanqing"
|
name = "obsessed-yanqing"
|
||||||
version = "1.4.0"
|
version = "1.4.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Evann Regnault"]
|
authors = ["Evann Regnault"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -35,21 +35,21 @@ pub struct Character {
|
||||||
pub path: String,
|
pub path: String,
|
||||||
pub stats: Stats,
|
pub stats: Stats,
|
||||||
pub ascension_materials: AscensionMaterials,
|
pub ascension_materials: AscensionMaterials,
|
||||||
pub skills: Vec<Skill>,
|
pub skills: Option<Vec<Skill>>,
|
||||||
pub eidolon: Vec<Eidolon>,
|
pub eidolon: Option<Vec<Eidolon>>,
|
||||||
pub traces: Vec<Trace>,
|
pub traces: Option<Vec<Trace>>,
|
||||||
pub traces_small: Vec<TracesSmall>,
|
pub traces_small: Option<Vec<TracesSmall>>,
|
||||||
pub review: Option<Review>,
|
pub review: Option<Review>,
|
||||||
pub pros: Option<Pros>,
|
pub pros: Option<Pros>,
|
||||||
pub cons: Option<Cons>,
|
pub cons: Option<Cons>,
|
||||||
pub voice_actors: VoiceActors,
|
pub voice_actors: Option<VoiceActors>,
|
||||||
pub ratings: Ratings,
|
pub ratings: Option<Ratings>,
|
||||||
pub energy_ultimate: String,
|
pub energy_ultimate: Option<String>,
|
||||||
pub build_data: Option<Vec<BuildDaum>>,
|
pub build_data: Option<Vec<BuildDaum>>,
|
||||||
pub videos: Value,
|
pub videos: Option<Value>,
|
||||||
pub teams: Option<Vec<Team>>,
|
pub teams: Option<Vec<Team>>,
|
||||||
pub character_builder_info: CharacterBuilderInfo,
|
pub character_builder_info: Option<CharacterBuilderInfo>,
|
||||||
pub tier_category: String,
|
pub tier_category: Option<String>,
|
||||||
pub release_date: Option<String>,
|
pub release_date: Option<String>,
|
||||||
pub is_released: bool,
|
pub is_released: bool,
|
||||||
pub is_new: Value,
|
pub is_new: Value,
|
||||||
|
|
Loading…
Reference in a new issue