You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thread 'main' panicked at src/main.rs:4:50:called `Result::unwrap()` on an `Err` value: Parse(ParseError { line: 9, col: 1, msg: "expecting \"[Some('='), Some(':')]\" but found EOF." })stack backtrace: 0: rust_begin_unwind at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/std/src/panicking.rs:645:5 1: core::panicking::panic_fmt at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/panicking.rs:72:14 2: core::result::unwrap_failed at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/result.rs:1649:5 3: core::result::Result<T,E>::unwrap at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/result.rs:1073:23 4: rs_pull_repos::main at ./src/main.rs:4:16 5: core::ops::function::FnOnce::call_once at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/ops/function.rs:250:5note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.Process finished with exit code 101
if I change conf.ini to
; file.ini[Book]path=path/a/b
name=Some name
list=
444
555
666
where last string is 666.
The error will be
thread 'main' panicked at src/main.rs:4:50:called `Result::unwrap()` on an `Err` value: Parse(ParseError { line: 8, col: 8, msg: "expecting \"[Some('='), Some(':')]\" but found EOF." })stack backtrace: 0: rust_begin_unwind at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/std/src/panicking.rs:645:5 1: core::panicking::panic_fmt at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/panicking.rs:72:14 2: core::result::unwrap_failed at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/result.rs:1649:5 3: core::result::Result<T,E>::unwrap at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/result.rs:1073:23 4: rs_pull_repos::main at ./src/main.rs:4:16 5: core::ops::function::FnOnce::call_once at /rustc/07dca489ac2d933c78d3c5158e3f43beefeb02ce/library/core/src/ops/function.rs:250:5note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.Process finished with exit code 101
The text was updated successfully, but these errors were encountered:
There is
rust-ini==0.20.0
and aconf.ini
where last string is empty string.
I ran
main.rs
and got this err
if I change
conf.ini
towhere last string is
666
.The error will be
The text was updated successfully, but these errors were encountered: