Remove unused use statement

This commit is contained in:
Pierre Barre
2023-01-05 19:57:31 +01:00
parent ef5fbceadb
commit 2ba4469bf8
3 changed files with 3 additions and 3 deletions

2
.cargo/config.toml Normal file
View File

@ -0,0 +1,2 @@
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"

View File

@ -92,7 +92,7 @@ jobs:
- build: windows
os: windows-latest
rust: stable
target: x86_64-pc-windows-gnu
target: x86_64-pc-windows-msvc
steps:
- name: Checkout
uses: actions/checkout@v2
@ -123,7 +123,6 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
use-cross: matrix.os != 'windows-latest'
args: --release --target ${{ matrix.target }} --bin privaxy --target-dir target
- uses: actions/upload-artifact@v3

View File

@ -4,7 +4,6 @@ use crate::proxy::exclusions::LocalExclusionStore;
use hyper::server::conn::AddrStream;
use hyper::service::{make_service_fn, service_fn};
use hyper::{Client, Server};
use include_dir::{include_dir, Dir};
use proxy::exclusions;
use reqwest::redirect::Policy;
use std::collections::HashSet;