quote
rust-lang/cargo#12872 (comment)
Personally, I think auto-detecting nightly features is a mistake and instead feature flags should be used to enable them explicitly.
actual
build.rs detect nightly feature.
|
const PROBE: &str = r#" |
|
#![feature(error_generic_member_access)] |
expected
build.rs should not detect nightly feature.
quote
rust-lang/cargo#12872 (comment)
actual
build.rsdetect nightly feature.thiserror/build.rs
Lines 12 to 13 in e9ea67c
expected
build.rsshould not detect nightly feature.