Skip to content

Commit

Permalink
Downgrade octocrab dependency to 0.33.3 (#473)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz authored Mar 5, 2024
1 parent 991e843 commit 4531612
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 75 deletions.
160 changes: 87 additions & 73 deletions 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
Expand Up @@ -23,7 +23,7 @@ humantime-serde = "1.1.1"
ignore = "0.4.22"
jsonwebtoken = "9.2.0"
lazy_static = "1.4.0"
octocrab = "0.34.2"
octocrab = "=0.33.3"
openssl = { version = "0.10.64", features = ["vendored"] }
postgres-openssl = "0.5.0"
regex = "1.10.3"
Expand Down
3 changes: 2 additions & 1 deletion src/github.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
use crate::cfg::CfgProfile;
use anyhow::{Error, Result};
use async_trait::async_trait;
use axum::http::{HeaderValue, StatusCode};
use axum::http::HeaderValue;
#[cfg(test)]
use mockall::automock;
use octocrab::{models::InstallationId, Octocrab, Page};
use reqwest::StatusCode;
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use std::sync::Arc;
Expand Down

0 comments on commit 4531612

Please sign in to comment.