Skip to content

Commit

Permalink
chore: fix rust-analyzer issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospb19-cw committed Aug 8, 2024
1 parent faeb97f commit a275ec9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/infra/build_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ pub const RUST_VERSION: &str = env!("VERGEN_RUSTC_SEMVER");
pub const RUST_CHANNEL: &str = env!("VERGEN_RUSTC_CHANNEL");
pub const RUST_TARGET: &str = env!("VERGEN_RUSTC_HOST_TRIPLE");

const VERSION_WITH_BRANCH: &str = const_format::formatcp!("{}::{}", GIT_BRANCH, GIT_COMMIT);
const VERSION_WITH_DESCRIBE: &str = const_format::formatcp!("{}::{}", GIT_DESCRIBE, GIT_COMMIT);
const VERSION_WITH_BRANCH: &str = const_format::formatcp!("{GIT_BRANCH}::{GIT_COMMIT}");
const VERSION_WITH_DESCRIBE: &str = const_format::formatcp!("{GIT_DESCRIBE}::{GIT_COMMIT}");

/// Returns the current service name.
///
Expand Down

0 comments on commit a275ec9

Please sign in to comment.