Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Upgrade Tokio and Prost #86

Merged
merged 3 commits into from
Apr 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule: [cron: "0 */6 * * *"]

env:
Expand Down Expand Up @@ -33,7 +35,11 @@ jobs:
chmod +x cfssljson
sudo mv cfssl /usr/local/bin
sudo mv cfssljson /usr/local/bin
- run: cargo install cargo-nextest
- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-nextest
locked: true
- run: make test
shell: bash

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ default = ["tls"]
tls = ["tonic/tls", "tokio/fs"]

[dependencies]
tonic = "0.8"
tonic = "0.9"
prost = "0.11"
tokio = "1.20"
tokio = "1.27"
tokio-stream = "0.1"
async-trait = "0.1"
futures = "0.3"
thiserror = "1.0"
http = "0.2"

[dev-dependencies]
tokio = { version = "1.20", features = ["full"] }
tokio = { version = "1.27", features = ["full"] }
rand = "0.8"

[build-dependencies]
tonic-build = "0.8"
tonic-build = "0.9"