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 ac48f51 commit f93c8a9Copy full SHA for f93c8a9
src/lib.rs
@@ -387,6 +387,12 @@
387
#![deny(missing_docs)]
388
#![deny(missing_debug_implementations)]
389
390
+// The explicit 'static lifetimes are still needed for rustc 1.13-16
391
+// backward compatibility, and this appeases clippy. If minimum rustc
392
+// becomes 1.17, should be able to remove this, those 'static lifetimes,
393
+// and use `static` in a lot of places `const` is used now.
394
+#![allow(const_static_lifetime)]
395
+
396
extern crate time as oldtime;
397
extern crate num;
398
#[cfg(feature = "rustc-serialize")]
0 commit comments