Skip to content

Commit

Permalink
bump tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Nov 25, 2023
1 parent 35ed291 commit 78227d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ diary_app_lib = {path="diary_app_lib"}
diary_app_api = {path="diary_app_api"}
diary_app_bot = {path="diary_app_bot"}
env_logger = "0.10"
tokio = {version="1.32", features=["full"]}
tokio = {version="1.34", features=["rt", "macros", "rt-multi-thread"]}
dirs = "5.0"
anyhow = "1.0"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting"]}
Expand Down
2 changes: 1 addition & 1 deletion diary_app_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
lazy_static = "1.4"
tokio = {version="1.28", features=["time"]}
tokio = {version="1.34", features=["time"]}
log = "0.4"
parking_lot = "0.12"
maplit = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion diary_app_bot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ crossbeam-utils = "0.8"
lazy_static = "1.4"
anyhow = "1.0"
thiserror = "1.0"
tokio = {version="1.32", features=["full"]}
tokio = {version="1.34", features=["rt", "macros", "rt-multi-thread"]}
telegram-bot = {git = "https://github.com/ddboline/telegram-bot.git", tag="0.9.0-4", default_features=false}
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.2" }
2 changes: 1 addition & 1 deletion diary_app_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ difference = "2.0"
anyhow = "1.0"
thiserror = "1.0"
dirs = "5.0"
tokio = {version="1.32", features=["full"]}
tokio = {version="1.34", features=["rt", "macros", "rt-multi-thread"]}
derive_more = "0.99"
envy = "0.4"
smallvec = "1.6"
Expand Down

0 comments on commit 78227d7

Please sign in to comment.