Skip to content

Commit 62ade1a

Browse files
committed
chore: update Cargo.lock
1 parent d5f702d commit 62ade1a

File tree

2 files changed

+3
-24
lines changed

2 files changed

+3
-24
lines changed

Cargo.lock

Lines changed: 0 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use anyhow::{Context, Result};
2-
use axum::{routing::get, Router};
2+
use axum::{Router};
33
use clap::Parser;
44
use config::ServiceConfig;
55
use outpost::PortMapping;
@@ -17,7 +17,7 @@ struct CommandLine {}
1717

1818
#[tokio::main]
1919
async fn main() -> Result<ExitCode> {
20-
let args = CommandLine::parse();
20+
let _args = CommandLine::parse();
2121
tracing_subscriber::fmt()
2222
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
2323
.init();
@@ -32,7 +32,7 @@ async fn main() -> Result<ExitCode> {
3232
#[cfg(feature = "cloudflare")]
3333
ServiceConfig::Cloudflare {
3434
service,
35-
cert_path,
35+
cert_path: _,
3636
ports,
3737
} => {
3838
let ports: Vec<PortMapping> = PortMapping::from_vec(ports)?;

0 commit comments

Comments
 (0)