Improve schema parsing

This commit is contained in:
a2x
2024-04-06 03:20:08 +10:00
parent efe4775dc0
commit ce0fb918ab
114 changed files with 79858 additions and 79527 deletions

View File

@@ -17,9 +17,6 @@ pub enum Error {
#[error(transparent)]
Serde(#[from] serde_json::Error),
#[error("index {idx} is out of bounds for array with length {len}")]
OutOfBounds { idx: usize, len: usize },
#[error("{0}")]
Other(&'static str),
}