Author: Jason White [github@jasonwhite.io]
Hash: 62f900792f4eaf851b510fe4623088ad52453a03
Timestamp: Wed, 17 May 2023 04:18:52 +0000 (1 year ago)

+1 -7 +/-2 browse
Fix clippy warnings
1diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
2index 802c290..8543268 100644
3--- a/.github/workflows/ci.yml
4+++ b/.github/workflows/ci.yml
5 @@ -77,7 +77,7 @@ jobs:
6 - uses: actions-rs/clippy-check@v1
7 with:
8 token: ${{ secrets.GITHUB_TOKEN }}
9- args: --all-features -- --allow dead_code
10+ args: --all-features
11
12
13 publish_crate:
14 diff --git a/src/main.rs b/src/main.rs
15index 0e19f1e..c2b8436 100644
16--- a/src/main.rs
17+++ b/src/main.rs
18 @@ -25,12 +25,6 @@ use structopt::StructOpt;
19
20 use rudolfs::{Cache, LocalServerBuilder, S3ServerBuilder};
21
22- mod lfs;
23- mod lru;
24- mod sha256;
25- mod storage;
26- mod util;
27-
28 // Additional help to append to the end when `--help` is specified.
29 static AFTER_HELP: &str = include_str!("help.md");
30