Skip to content

Commit

Permalink
Add list of extra used unstable features
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Jan 8, 2024
1 parent 8a8abd1 commit e16c63d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hacking/unstable-feature-monitoring/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ clean:

.PHONY: used
used:
./enumerate-unstable-features-used.sh
./enumerate-used-unstable-features.sh

.PHONY: wishlist
wishlist:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ set -eu -o pipefail
here=$(realpath $(dirname $0))
top_level_dir=$here/../..

find $top_level_dir/crates \
find \
$top_level_dir/crates \
$here/extra-used-unstable-features.rs \
-type f -name '*.rs' \
-exec grep '^#!\[feature(' '{}' ';' \
| sort \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// Copyright 2024, Colias Group, LLC
//
// SPDX-License-Identifier: BSD-2-Clause
//

#![feature(riscv_ext_intrinsics)]
#![feature(stdsimd)]

0 comments on commit e16c63d

Please sign in to comment.