Compare commits

...

2 commits

Author SHA1 Message Date
92d7f6acc4 get cargo fmt'ed 2024-11-23 15:21:07 +00:00
55634e9f77 remove some spaces from cargo.toml 2024-11-23 15:20:34 +00:00
2 changed files with 101 additions and 101 deletions

View file

@ -1,4 +1,4 @@
use serde::{Serialize,Deserialize};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// The root object.
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
@ -12,7 +12,7 @@ pub struct Mcmeta {
/// (optional) Section for specifying the overlays, which are sub-packs applied over the "normal" contents of a pack.
pub overlays: Option<McmetaOverlays>,
/// (optional) Only present in resource packs — Contains additional languages to add to the language menu.
pub language: Option<HashMap<String,McmetaLanguage>>
pub language: Option<HashMap<String, McmetaLanguage>>,
}
/// Holds the pack information.
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
@ -26,7 +26,7 @@ pub struct Mcmeta {
/// (optional) Describes a range for pack formats that this pack supports.
///
/// The range has to include the value of [`McmetaPack::pack_format`].
pub supported_formats: Option<McmetaPackSupportedformats>
pub supported_formats: Option<McmetaPackSupportedformats>,
}
/// Determines the version(s) of Minecraft that this pack is compatible with.
///
@ -36,7 +36,7 @@ pub struct Mcmeta {
/// The text in the description.
pub text: String,
/// The colour of the text in the description.
pub color: Option<String>
pub color: Option<String>,
}
/// (optional) Describes a range for pack formats that this pack supports.
///
@ -46,7 +46,7 @@ pub struct Mcmeta {
/// Minimum Pack format number
pub min_inclusive: u8,
/// Maximum pack format number
pub max_inclusive: u8
pub max_inclusive: u8,
}
// I don't what this looks like
@ -56,7 +56,7 @@ pub struct Mcmeta {
/// List of enabled feature flags.
///
/// Each item in the Vec is a location of a feature flag.
pub enabled: Vec<String>
pub enabled: Vec<String>,
}
// I don't what this looks like
@ -66,7 +66,7 @@ pub struct Mcmeta {
/// Vector of patterns.
///
/// Any file that matches one of the patterns inside [`McmetaFilter::block`] is treated as if it was not present in the pack at all.
pub block: Vec<McmetaFilterBlock>
pub block: Vec<McmetaFilterBlock>,
}
/// A pattern.
///
@ -76,7 +76,7 @@ pub struct Mcmeta {
/// A regular expression for the namespace of files to be filtered out. If unspecified, it applies to every namespace.
pub namespace: String,
/// A regular expression for the paths of files to be filtered out. If unspecified, it applies to every file.
pub path: String
pub path: String,
}
// I don't what this looks like
@ -86,7 +86,7 @@ pub struct Mcmeta {
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
pub struct McmetaOverlays {
/// Vector of overlays. The order is important, as the first in the list is applied first.
pub entries: Vec<McmetaOverlaysEntries>
pub entries: Vec<McmetaOverlaysEntries>,
}
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
/// An overlay.
@ -94,7 +94,7 @@ pub struct Mcmeta {
/// Describes a range for pack formats when this overlay should be active.
pub formats: McmetaOverlaysEntriesFormats,
/// The directory to overlay for the respective versions (allowed characters: a-z, 0-9, _ and -). In this directory, pack.mcmeta and pack.png are ignored.
pub directory: String
pub directory: String,
}
/// Describes a range for pack formats when this overlay should be active.
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
@ -102,7 +102,7 @@ pub struct Mcmeta {
/// Minimum Pack format number.
pub min_inclusive: u8,
/// Maximum Pack format number.
pub max_inclusive: u8
pub max_inclusive: u8,
}
// I don't what this looks like
@ -114,5 +114,5 @@ pub struct Mcmeta {
/// The country or region name
pub region: String,
/// If true, the language reads right to left.
pub bidirectional: bool
pub bidirectional: bool,
}