Skip to content

Commit

Permalink
Dependency updates. Fix clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
kukabi committed Aug 14, 2024
1 parent 21f4798 commit fca8cc8
Show file tree
Hide file tree
Showing 16 changed files with 118 additions and 59 deletions.
141 changes: 97 additions & 44 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 subvt-network-status-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jsonrpsee = { version = "0.24", features = ["full"] }
lazy_static = { workspace = true }
log = { workspace = true }
once_cell = "1"
redis = { version = "0.25", features = ["tokio-comp"] }
redis = { version = "0.26", features = ["tokio-comp"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
subvt-config = { path = "../subvt-config" }
Expand Down
2 changes: 1 addition & 1 deletion subvt-network-status-updater/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ chrono = "0.4"
lazy_static = { workspace = true }
log = { workspace = true }
once_cell = "1"
redis = { version = "0.25", features = ["tokio-comp"] }
redis = { version = "0.26", features = ["tokio-comp"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
subvt-config = { path = "../subvt-config" }
Expand Down
2 changes: 1 addition & 1 deletion subvt-notification-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ futures-util = "0.3"
lazy_static = { workspace = true }
log = { workspace = true }
once_cell = "1"
redis = "0.25"
redis = "0.26"
rustc-hash = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion subvt-notification-processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lettre = { version = "0.11", default-features = true, features = ["tokio1-native
lettre_email = "0.9"
log = { workspace = true }
once_cell = "1"
redis = { version = "0.25", features = ["tokio-comp"] }
redis = { version = "0.26", features = ["tokio-comp"] }
rustc-hash = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
1 change: 1 addition & 0 deletions subvt-notification-processor/src/sender/telegram.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ impl TelegramSender {
link_preview_options: Some(LinkPreviewOptions::builder().is_disabled(true).build()),
disable_notification: None,
protect_content: None,
message_effect_id: None,
reply_parameters: None,
reply_markup: None,
message_thread_id: None,
Expand Down
2 changes: 1 addition & 1 deletion subvt-persistence/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ hex = "0.4"
lazy_static = { workspace = true }
log = { workspace = true }
parity-scale-codec = "3.6"
redis = { version = "0.25", features = ["tokio-comp"] }
redis = { version = "0.26", features = ["tokio-comp"] }
rustc-hash = "2.0"
serde = { version = "1.0" }
serde_json = "1.0"
Expand Down
Loading

0 comments on commit fca8cc8

Please sign in to comment.