Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 8cc4200

Browse files
authored
Consider "dev" as nightly for feature (un)gating
1 parent a15df80 commit 8cc4200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/config_type.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ impl ConfigType for IgnoreList {
7373
macro_rules! is_nightly_channel {
7474
() => {
7575
option_env!("CFG_RELEASE_CHANNEL")
76-
.map(|c| c == "nightly")
76+
.map(|c| c == "nightly" || c == "dev")
7777
.unwrap_or(true)
7878
};
7979
}

0 commit comments

Comments
 (0)