Commit
+1 -7 +/-2 browse
1 | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml |
2 | index 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 |
15 | index 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 |