Skip to content

Commit

Permalink
fixup! fixup! Fixes #19790: Use gumdrop instead of structopt
Browse files Browse the repository at this point in the history
Fixes #19790: Use gumdrop instead of structopt
  • Loading branch information
amousset committed Aug 15, 2021
1 parent 1511725 commit a7ea991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions relay/sources/relayd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ use tracing_subscriber::{
reload::Handle,
};

pub const CRATE_NAME: &'static str = env!("CARGO_PKG_NAME");
pub const CRATE_VERSION: &'static str = env!("CARGO_PKG_VERSION");
pub const CRATE_NAME: &str = env!("CARGO_PKG_NAME");
pub const CRATE_VERSION: &str = env!("CARGO_PKG_VERSION");

// There are two main phases in execution:
//
Expand Down

0 comments on commit a7ea991

Please sign in to comment.