refactor: update dependencies and add blue mage

This commit is contained in:
Anna 2019-01-15 14:38:54 -05:00
parent 9e7db2771d
commit 8a9402f345
3 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,7 @@ authors = ["Kyle Clemens <git@kyleclemens.com>"]
edition = "2018"
[dependencies]
reqwest = "0.8"
reqwest = "0.9"
failure = "0.1"
lazy_static = "1"
url = "1"

View File

@ -49,8 +49,8 @@ impl LodestoneScraper {
.send()
.map_err(Error::Net)?;
match res.status() {
StatusCode::Ok => {},
StatusCode::NotFound => return Err(Error::NotFound),
StatusCode::OK => {},
StatusCode::NOT_FOUND => return Err(Error::NotFound),
x => return Err(Error::UnexpectedResponse(x)),
}
res

View File

@ -78,6 +78,7 @@ impl AsLodestone for Job {
Job::Astrologian => 33,
Job::Samurai => 34,
Job::RedMage => 35,
Job::BlueMage => 36,
}
}
}