Skip to content

Commit 672f9a7

Browse files
committed
Remove unused import
1 parent fb82b8b commit 672f9a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rhoxy - Rust HTTP/HTTPS Proxy
22
[![Tests](https://github.com/JoshCap20/rhoxy/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/JoshCap20/rhoxy/actions/workflows/test.yml)
3-
[![Publish](https://github.com/JoshCap20/rhoxy/actions/workflows/deploy.yml/badge.svg?branch=main)](https://github.com/JoshCap20/rhoxy/actions/workflows/deploy.yml)
3+
[![Publish](https://github.com/JoshCap20/rhoxy/actions/workflows/deploy.yml/badge.svg)](https://github.com/JoshCap20/rhoxy/actions/workflows/deploy.yml)
44

55
An async HTTP/HTTPS proxy in Rust
66

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use anyhow::Result;
22
use clap::Parser;
33
use tokio::io::{BufReader, BufWriter};
44
use tokio::net::{TcpListener, TcpStream};
5-
use tracing::{debug, error, info, warn};
5+
use tracing::{debug, error, info};
66

77
#[derive(Parser, Debug)]
88
#[command(author, version, about, long_about = None)]

0 commit comments

Comments
 (0)