Downgrade octocrab dependency to 0.33.3 (#493)

Signed-off-by: Cintia Sanchez Garcia <cynthiasg@icloud.com>
This commit is contained in:
Cintia Sánchez García 2024-05-13 20:07:11 +02:00 committed by GitHub
parent 19b3ef4420
commit 69db07e807
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 485 additions and 370 deletions

850
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -18,12 +18,13 @@ deadpool-postgres = { version = "0.13.2", features = ["serde"] }
futures = "0.3.30"
hex = "0.4.3"
hmac = "0.12.1"
http = "0.2.12"
humantime = "2.1.0"
humantime-serde = "1.1.1"
ignore = "0.4.22"
jsonwebtoken = "9.3.0"
lazy_static = "1.4.0"
octocrab = "0.38.0"
octocrab = "=0.33.3"
openssl = { version = "0.10.64", features = ["vendored"] }
postgres-openssl = "0.5.0"
regex = "1.10.4"

View File

@ -2,10 +2,10 @@ use crate::cfg::CfgProfile;
use anyhow::{Error, Result};
use async_trait::async_trait;
use axum::http::HeaderValue;
use http::StatusCode;
#[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;