We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 264831e commit 2ba8956Copy full SHA for 2ba8956
clarity/src/libclarity.rs
@@ -101,9 +101,9 @@ const GIT_COMMIT: Option<&'static str> = option_env!("GIT_COMMIT");
101
const GIT_TREE_CLEAN: Option<&'static str> = option_env!("GIT_TREE_CLEAN");
102
103
#[cfg(debug_assertions)]
104
-const BUILD_TYPE: &'static str = "debug";
+const BUILD_TYPE: &str = "debug";
105
#[cfg(not(debug_assertions))]
106
-const BUILD_TYPE: &'static str = "release";
+const BUILD_TYPE: &str = "release";
107
108
pub fn version_string(pkg_name: &str, pkg_version: &str) -> String {
109
let git_branch = GIT_BRANCH.unwrap_or("");
0 commit comments