mirror of https://github.com/cncf/gitvote.git
Downgrade octocrab dependency to 0.33.3 (#493)
Signed-off-by: Cintia Sanchez Garcia <cynthiasg@icloud.com>
This commit is contained in:
parent
19b3ef4420
commit
69db07e807
File diff suppressed because it is too large
Load Diff
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue