Skip to content

Commit

Permalink
fix: hireable value of GitHub to Bool instead of string
Browse files Browse the repository at this point in the history
Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com>
  • Loading branch information
DarthBenro008 committed Dec 5, 2021
1 parent 093f8d2 commit 57c1c19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gunfollower"
version = "0.1.0"
version = "0.1.2"
authors = ["Hemanth Krishna <hkpdev008@gmail.com>"]
license = "MIT"
description = "Rust CLI to check who unfollows you on GitHub"
Expand Down
2 changes: 1 addition & 1 deletion src/models/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub struct User {
pub blog: String,
pub location: String,
pub email: Option<String>,
pub hireable: Option<String>,
pub hireable: Option<bool>,
pub bio: String,
#[serde(rename = "twitter_username")]
pub twitter_username: String,
Expand Down

0 comments on commit 57c1c19

Please sign in to comment.