Skip to content

Commit

Permalink
build(deps): bump project dependencies (#48)
Browse files Browse the repository at this point in the history
- [x] update cargo dependencies;
  • Loading branch information
rfprod authored Nov 21, 2023
1 parent b0bd70b commit 2bbf715
Show file tree
Hide file tree
Showing 18 changed files with 131 additions and 112 deletions.
171 changes: 91 additions & 80 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-workspace"
version = "0.7.16"
version = "0.7.17"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/artifact/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Artifact configuration submodule.
///
//! Artifact configuration submodule.
use colored::Colorize;
use std::env::{self};

Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/artifact/create_artifact/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Artifact creation module for the data pipeline.
///
//! Artifact creation module for the data pipeline.
use std::{
env::{self},
process::Command,
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/artifact/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Artifact module for the data pipeline.
///
//! Artifact module for the data pipeline.
use colored::Colorize;
use std::fs;

Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/artifact/restore_artifact/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Artifact restoration module for the data pipeline.
///
//! Artifact restoration module for the data pipeline.
use std::{
env::{self},
process::Command,
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/environment/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Environment loader module for the data pipeline.
///
//! Environment loader module for the data pipeline.
use colored::Colorize;
use std::{
collections::HashMap,
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/github/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// GitHub module for the data pipeline.
///
//! GitHub module for the data pipeline.
use colored::Colorize;
use octorust::{
auth::Credentials,
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/github/rate_limit_handler/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// GitHub API rate limit handler submodule for the data pipeline.
///
//! GitHub API rate limit handler submodule for the data pipeline.
use colored::Colorize;
use octorust::ClientError;
use std::process::Command;
Expand Down
18 changes: 9 additions & 9 deletions src/data_pipeline/mod.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/// Data pipeline module.
///
/// Environment variables should be placed in the `.env` file:
///
/// GITHUB_TOKEN=...
/// GPG_PASSPHRASE=...
/// MONGODB_CONNECTION_STRING=...
/// MONGODB_DATABASE=...
///
//! Data pipeline module.
//!
//! Environment variables should be placed in the `.env` file:
//!
//! GITHUB_TOKEN=...
//! GPG_PASSPHRASE=...
//! MONGODB_CONNECTION_STRING=...
//! MONGODB_DATABASE=...
use colored::Colorize;
use octorust::{
types::SearchReposSort,
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/mongo/configuration/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// MongoDb configuration submodule.
///
//! MongoDb configuration submodule.
use colored::Colorize;
use mongodb::sync::{Client, Database};
use std::env::{self};
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/mongo/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// MongoDB module for the data pipeline.
///
//! MongoDB module for the data pipeline.
use colored::Colorize;

mod configuration;
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/mongo/repos_collection/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// MongoDB repos module for the data pipeline.
///
//! MongoDB repos module for the data pipeline.
use std::fs;

use colored::Colorize;
Expand Down
4 changes: 2 additions & 2 deletions src/data_pipeline/mongo/workflows_collection/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// MongoDB repos module for the data pipeline.
///
//! MongoDB repos module for the data pipeline.
use std::fs;

use colored::Colorize;
Expand Down
2 changes: 2 additions & 0 deletions src/guessing_game/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Guessing game module.
use colored::Colorize;
use rand::{thread_rng, Rng};
use std::{cmp::Ordering, env::args, io};
Expand Down
2 changes: 2 additions & 0 deletions src/linfa_train/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Linfa train module.
use ciborium::{cbor, value};
use colored::Colorize;
use csv::Reader;
Expand Down
2 changes: 2 additions & 0 deletions src/open_weather/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Open weather module.
use colored::Colorize;
use hyper::{body::Buf, Client, Uri};
use std::{
Expand Down
2 changes: 2 additions & 0 deletions src/system_information/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! System information module.
use colored::Colorize;
use std::{cmp::Ordering, env::args, io};
use sysinfo::{ProcessExt, System, SystemExt};
Expand Down

0 comments on commit 2bbf715

Please sign in to comment.