Skip to content

Commit 109d02d

Browse files
committed
revert cache change and pin warp dep to 0.3.5
Something about 0.3.6 breaks the doc test Signed-off-by: Jim Crossley <[email protected]>
1 parent 957ef1a commit 109d02d

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/rust_tests.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ jobs:
3232
if: matrix.target == 'x86_64-unknown-linux-musl'
3333

3434
# # Caching stuff
35-
# - uses: actions/cache@v2
36-
# with:
37-
# path: |
38-
# ~/.cargo/bin/
39-
# ~/.cargo/registry/index/
40-
# ~/.cargo/registry/cache/
41-
# ~/.cargo/git/db/
42-
# key: ${{ runner.os }}-cargo-deps-${{ hashFiles('**/Cargo.toml') }}
43-
# - uses: actions/cache@v2
44-
# with:
45-
# path: |
46-
# target/
47-
# key: ${{ runner.os }}-cargo-target-${{ matrix.toolchain }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml') }}
35+
- uses: actions/cache@v2
36+
with:
37+
path: |
38+
~/.cargo/bin/
39+
~/.cargo/registry/index/
40+
~/.cargo/registry/cache/
41+
~/.cargo/git/db/
42+
key: ${{ runner.os }}-cargo-deps-${{ hashFiles('**/Cargo.toml') }}
43+
- uses: actions/cache@v2
44+
with:
45+
path: |
46+
target/
47+
key: ${{ runner.os }}-cargo-target-${{ matrix.toolchain }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml') }}
4848
- uses: actions-rs/toolchain@v1
4949
with:
5050
toolchain: ${{ matrix.toolchain }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ actix-web = { version = "4", optional = true }
4747
actix-http = { version = "3", optional = true }
4848
reqwest-lib = { version = "^0.11", default-features = false, features = ["rustls-tls"], optional = true, package = "reqwest" }
4949
rdkafka-lib = { version = "^0.29", features = ["cmake-build"], optional = true, package = "rdkafka" }
50-
warp-lib = { version = "^0.3", optional = true, package = "warp" }
50+
warp-lib = { version = "=0.3.5", optional = true, package = "warp" }
5151
async-trait = { version = "^0.1.33", optional = true }
5252
bytes = { version = "^1.0", optional = true }
5353
futures = { version = "^0.3", optional = true }

0 commit comments

Comments
 (0)