Upgrade ical and teloxide versions

This commit is contained in:
2023-04-11 16:24:56 +02:00
parent 481f5895a9
commit 9b0876cb08
2 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@@ -821,9 +821,9 @@ dependencies = [
[[package]] [[package]]
name = "ical" name = "ical"
version = "0.7.0" version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a9f7215ad0d77e69644570dee000c7678a47ba7441062c1b5f918adde0d73cf" checksum = "356d82bd58997815d55ea6f9081bd4cac149e50ca943f7a4f7c050fec7271c1f"
dependencies = [ dependencies = [
"thiserror", "thiserror",
] ]
@@ -1709,9 +1709,9 @@ checksum = "20f34339676cdcab560c9a82300c4c2581f68b9369aedf0fae86f2ff9565ff3e"
[[package]] [[package]]
name = "teloxide" name = "teloxide"
version = "0.11.3" version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59c3b28292b33a57a8d71ce000c23fdaffeb0b4aec35fa9351d4be7ec6376a3f" checksum = "c63345cf32a8850ebddcdd769dc2d5193d5e231262d5dada264b79da01a664da"
dependencies = [ dependencies = [
"aquamarine", "aquamarine",
"bytes", "bytes",
@@ -1735,9 +1735,9 @@ dependencies = [
[[package]] [[package]]
name = "teloxide-core" name = "teloxide-core"
version = "0.8.0" version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9243a720aa9bddda324a7f90b4ab42887425524bf4d5d24a56b50bccb984b7c4" checksum = "303db260110c238e3af77bb9dff18bf7a5b5196f783059b0852aab75f91d5a16"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"bytes", "bytes",

View File

@@ -14,7 +14,7 @@ chrono = "0.4.22"
chrono-tz = "0.6.3" chrono-tz = "0.6.3"
diesel = { version = "2.0.2", features = ["chrono", "sqlite"] } diesel = { version = "2.0.2", features = ["chrono", "sqlite"] }
diesel_migrations = "2.0.0" diesel_migrations = "2.0.0"
ical = { version = "0.7.0", features = ["ical"], default-features = false } ical = { version = "0.8.0", features = ["ical"], default-features = false }
log = "0.4.17" log = "0.4.17"
once_cell = "1.17.0" once_cell = "1.17.0"
pretty_env_logger = "0.4.0" pretty_env_logger = "0.4.0"
@@ -24,7 +24,7 @@ rrule = "0.10.0"
rust-i18n = "1.1.1" rust-i18n = "1.1.1"
serde = { version = "1.0.145", features = ["derive"] } serde = { version = "1.0.145", features = ["derive"] }
serde_yaml = "0.9.13" serde_yaml = "0.9.13"
teloxide = { version = "0.11.0", features = ["macros", "throttle"] } teloxide = { version = "0.12.2", features = ["macros", "throttle"] }
thiserror = "1.0.37" thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["macros"] } tokio = { version = "1.21.2", features = ["macros"] }