Compare commits
No commits in common. "088824efdf8c7cb90a3ac3703d894e89081d1303" and "7157c70b1f870b6df928d0472ce7ff0f4e16e216" have entirely different histories.
088824efdf
...
7157c70b1f
15
src/main.rs
15
src/main.rs
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2022–2023 Emma Tebibyte
|
* Copyright (c) 2022 Emma Tebibyte
|
||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify it under
|
* This program is free software: you can redistribute it and/or modify it under
|
||||||
@ -67,7 +67,8 @@ fn parse_toml(
|
|||||||
};
|
};
|
||||||
|
|
||||||
match value {
|
match value {
|
||||||
Value::Array(array) => { // TODO: Split Array logic into separate function
|
// TODO: Implement other type parsing
|
||||||
|
Value::Array(array) => {
|
||||||
let element: String;
|
let element: String;
|
||||||
match index {
|
match index {
|
||||||
Some(i) => {
|
Some(i) => {
|
||||||