Skip to content

Commit

Permalink
bump dep versions, fix deprecation notice in GHA action
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlq committed Mar 19, 2024
1 parent 0658ddb commit 9f72004
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check formatting
run: cargo fmt --check --verbose
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ keywords = ["protoc", "grpc", "tonic", "protobuf", "prost"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/arcanyx-pub/protoc-fetcher"
version = "0.1.0"
version = "0.1.1"

[dependencies]
anyhow = "1.*"
reqwest = { version = "0.11.*", features = ["blocking"] }
zip-extract = { version = "^0.1.2", features = ["deflate"] }
anyhow = "1.0.81"
reqwest = { version = "0.11.27", features = ["blocking"] }
zip-extract = { version = "0.1.3", features = ["deflate"] }

[dev-dependencies]
tonic-build = "0.8.*"
tonic-build = "0.11.0"

0 comments on commit 9f72004

Please sign in to comment.