aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2021-02-04 18:20:27 +0100
committerGitHub <noreply@github.com>2021-02-04 18:20:27 +0100
commita272f4ce9eb812bd14114fe95ab614bc8dddfce5 (patch)
tree216e07441b294f4424c49d92d1e74e1d94772cbb /src/lib.rs
parenta0230408252c9e3f06d4cee4c45831922df0143e (diff)
parent85bc81d4fce29bf628d31cb978aa482e564aab90 (diff)
downloadrapier-a272f4ce9eb812bd14114fe95ab614bc8dddfce5.tar.gz
rapier-a272f4ce9eb812bd14114fe95ab614bc8dddfce5.tar.bz2
rapier-a272f4ce9eb812bd14114fe95ab614bc8dddfce5.zip
Merge pull request #104 from EmbarkStudios/clippy-fixes
Make clippy a bit happier
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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;