Commit 39d6b83
Merge #29
29: fix: enable alloc_layout_extra for nightly feature r=Amanieu a=jkcclemens
The latest nightly builds have apparently put `alloc_layout_extra` behind a feature gate, causing compilation failures with the nightly feature enabled. This adds the feature.
```
error[E0658]: use of unstable library feature 'alloc_layout_extra' (see issue #55724)
--> /Users/kyleclemens/.cargo/git/checkouts/hashbrown-fc08982fe9a23efa/4496e06/src/raw/mod.rs:147:16
|
147 | let data = Layout::array::<T>(buckets).ok()?;
| ^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(alloc_layout_extra)] to the crate attributes to enable
```
Co-authored-by: Kyle Clemens <github@kyleclemens.com>2 files changed
+3
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | | - | |
| 156 | + | |
| 157 | + | |
157 | 158 | | |
158 | 159 | | |
159 | 160 | | |
| |||
0 commit comments