From 85bc81d4fce29bf628d31cb978aa482e564aab90 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Thu, 4 Feb 2021 13:11:04 +0100 Subject: Make clippy a bit happier --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index e63b0d4..564a758 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -126,7 +126,7 @@ pub(crate) const INVALID_U64: u64 = u64::MAX; pub(crate) const INVALID_USIZE: usize = INVALID_U32 as usize; /// The string version of Rapier. -pub const VERSION: &'static str = env!("CARGO_PKG_VERSION"); +pub const VERSION: &str = env!("CARGO_PKG_VERSION"); pub mod counters; pub mod data; -- cgit