Skip to content

Commit

Permalink
Upgrade mongodb to v8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
navarroaxel committed Sep 30, 2024
1 parent 04f66c4 commit 7d25e09
Show file tree
Hide file tree
Showing 9 changed files with 68 additions and 117 deletions.
161 changes: 56 additions & 105 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ teamviewer = { path = "crates/teamviewer" }
yum = { path = "crates/yum" }

futures = "0.3.30"
reqwest = { version = "0.12.5", features = ["gzip", "json"] }
tokio = { version = "1.39.2", features = ["full"] }
reqwest = { version = "0.12.8", features = ["gzip", "json"] }
tokio = { version = "1.40.0", features = ["full"] }
4 changes: 2 additions & 2 deletions crates/aur/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"

[dependencies]
futures = "0.3.30"
reqwest = { version = "0.12.5", features = ["gzip", "json"] }
serde = { version = "1.0.207", features = ["derive"] }
reqwest = { version = "0.12.8", features = ["gzip", "json"] }
serde = { version = "1.0.210", features = ["derive"] }
2 changes: 1 addition & 1 deletion crates/chrome/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ edition = "2021"
aur = { path = "../aur" }
yum = { path = "../yum" }

reqwest = { version = "0.12.5", features = ["gzip", "json"] }
reqwest = { version = "0.12.8", features = ["gzip", "json"] }
2 changes: 1 addition & 1 deletion crates/edge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ edition = "2021"
aur = { path = "../aur" }
yum = { path = "../yum" }

reqwest = { version = "0.12.5", features = ["gzip", "json"] }
reqwest = { version = "0.12.8", features = ["gzip", "json"] }
4 changes: 2 additions & 2 deletions crates/jetbrains/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2021"
[dependencies]
aur = { path = "../aur" }

reqwest = { version = "0.12.5", features = ["gzip", "json"] }
serde = { version = "1.0.207", features = ["derive"] }
reqwest = { version = "0.12.8", features = ["gzip", "json"] }
serde = { version = "1.0.210", features = ["derive"] }
serde-xml-rs = "0.6.0"
2 changes: 1 addition & 1 deletion crates/mongodb/src/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use yum::{fetch_yum_repository_path, fetch_yum_updates, YumUpdate};

pub fn get_url(path: &str) -> String {
format!(
"https://repo.mongodb.org/yum/redhat/8/mongodb-org/7.0/x86_64/{}",
"https://repo.mongodb.org/yum/redhat/8/mongodb-org/8.0/x86_64/{}",
path
)
}
Expand Down
2 changes: 1 addition & 1 deletion crates/teamviewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ edition = "2021"
aur = { path = "../aur" }
yum = { path = "../yum" }

reqwest = { version = "0.12.5", features = ["gzip", "json"] }
reqwest = { version = "0.12.8", features = ["gzip", "json"] }
4 changes: 2 additions & 2 deletions crates/yum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ aur = { path = "../aur" }

itertools = "0.13.0"
libflate = "2.1.0"
reqwest = { version = "0.12.5", features = ["gzip", "json"] }
reqwest = { version = "0.12.8", features = ["gzip", "json"] }
semver = "1.0.23"
serde = { version = "1.0.207", features = ["derive"] }
serde = { version = "1.0.210", features = ["derive"] }
serde-xml-rs = "0.6.0"

0 comments on commit 7d25e09

Please sign in to comment.