Compare commits

...

2 Commits
main ... 4300

Author SHA1 Message Date
autofix-ci[bot]
da7c29eaf1 [autofix.ci] apply automated fixes 2025-09-17 13:34:44 +00:00
Greg Johnston
937df93770 fix: support const generic static strs on nightly versions with conflicting feature names (closes #4300) 2025-09-17 09:02:00 -04:00

View File

@@ -10,6 +10,9 @@
all(feature = "nightly", rustc_nightly),
feature(unsized_const_params)
)]
// support for const generic &'static str has now moved back and forth between
// these two features a couple times; we'll just enable both
#![cfg_attr(all(feature = "nightly", rustc_nightly), feature(adt_const_params))]
#![deny(missing_docs)]
/// Commonly-used traits.