diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 31000a2..0570999 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 89e535a..c128307 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"