Update json5 crate to include location errors

This commit is contained in:
Magnus Ulimoen 2021-02-12 18:08:10 +01:00
parent d11abff1c3
commit 78f0c9ed2c
2 changed files with 16 additions and 3 deletions

View File

@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
sbp = { path = "../sbp", features = ["rayon", "serde1"] }
sbp = { path = "../sbp", features = ["rayon", "serde1", "fast-float"] }
euler = { path = "../euler", features = ["serde1"] }
hdf5 = "0.7.0"
rayon = "1.3.0"
@ -14,5 +14,5 @@ indicatif = "0.15.0"
structopt = "0.3.14"
ndarray = { version = "0.13.1", features = ["serde"] }
serde = { version = "1.0.115", features = ["derive"] }
json5 = "0.2.8"
json5 = "0.3.0"
indexmap = { version = "1.5.2", features = ["serde-1"] }

View File

@ -197,7 +197,20 @@ fn main() {
let opt = Options::from_args();
let filecontents = std::fs::read_to_string(&opt.json).unwrap();
let config: parsing::Configuration = json5::from_str(&filecontents).unwrap();
let config: parsing::Configuration = match json5::from_str(&filecontents) {
Ok(config) => config,
Err(e) => {
eprintln!("Configuration could not be read: {}", e);
if let json5::Error::Message {
location: Some(location),
..
} = e
{
eprintln!("\t{:?}", location);
}
return;
}
};
let parsing::RuntimeConfiguration {
names,