Skip to content

Commit

Permalink
🤓 pd: group std imports
Browse files Browse the repository at this point in the history
  • Loading branch information
cratelyn committed Jan 23, 2024
1 parent c49f3ef commit 91fad4a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/bin/pd/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#![allow(clippy::clone_on_copy)]
#![deny(clippy::unwrap_used)]
#![recursion_limit = "512"]
use std::{net::SocketAddr, path::PathBuf};
use std::{error::Error, net::SocketAddr, path::PathBuf};

use console_subscriber::ConsoleLayer;
use metrics_tracing_context::{MetricsLayer, TracingContextLayer};
use metrics_util::layers::Stack;
use std::error::Error;

use anyhow::Context;
use clap::{Parser, Subcommand};
Expand Down

0 comments on commit 91fad4a

Please sign in to comment.