We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2669eef commit fa53112Copy full SHA for fa53112
src/main.rs
@@ -122,9 +122,9 @@ fn latest_master_commit(token: &Option<String>) -> String {
122
easy.get(true).unwrap();
123
easy.url("https://api.github.com/repos/rust-lang/rust/commits/master")
124
.unwrap();
125
- if let Some(token) = token {
126
- easy.username("x-access-token").unwrap();
127
- easy.password(token).unwrap();
+ if let Some(_token) = token {
+ // easy.username("x-access-token").unwrap();
+ // easy.password(token).unwrap();
128
}
129
let mut headers = curl::easy::List::new();
130
headers
0 commit comments