Skip to content

Commit

Permalink
Update dependencies. Update Rust edition
Browse files Browse the repository at this point in the history
  • Loading branch information
rkudryashov committed Nov 19, 2021
1 parent bffff20 commit cc59427
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 67 deletions.
96 changes: 39 additions & 57 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 grpc-telegram-bot/bot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
name = "solar-system-info-bot"
version = "0.1.0"
authors = ["Roman Kudryashov <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
solar-system-info-rpc = { path = "../rpc" }
teloxide = { version = "0.5.3", features = ["macros", "auto-send"] }
tonic = "0.6.1"
tokio = { version = "1.13.0", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1.14.0", features = ["rt-multi-thread", "macros"] }
futures = "0.3.17"
indoc = "1.0.3"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
6 changes: 3 additions & 3 deletions grpc-telegram-bot/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
name = "solar-system-info-server"
version = "0.1.0"
authors = ["Roman Kudryashov <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
solar-system-info-rpc = { path = "../rpc" }
tonic = "0.6.1"
prost = "0.9.0"
prost-types = "0.9.0"
tokio = { version = "1.13.0", features = ["rt-multi-thread"] }
tokio = { version = "1.14.0", features = ["rt-multi-thread"] }
tokio-stream = "0.1.8"
futures = "0.3.17"
diesel = { version = "1.4.8", features = ["postgres", "r2d2", "numeric", "chrono"] }
diesel_migrations = "1.4.0"
chrono = { version = "0.4.19", features = ["serde"] }
bigdecimal = "0.1.2"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
serde_json = "1.0.71"
log = "0.4.14"
env_logger = "0.9.0"
dotenv = "0.15.0"
Expand Down
10 changes: 5 additions & 5 deletions mongodb-redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
name = "mongodb-redis"
version = "0.1.0"
authors = ["Roman Kudryashov <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
mongodb = "2.0.1"
mongodb = "2.0.2"
redis = { version = "0.21.4", features = ["tokio-comp", "connection-manager"] }
actix-web = "4.0.0-beta.10"
tokio = "1.13.0"
actix-web = "4.0.0-beta.11"
tokio = "1.14.0"
tokio-stream = "0.1.8"
chrono = { version = "0.4.19", features = ["serde"] }
serde = "1.0.130"
serde_json = "1.0.68"
serde_json = "1.0.71"
dotenv = "0.15.0"
derive_more = "0.99.16"
log = "0.4.14"
Expand Down

0 comments on commit cc59427

Please sign in to comment.