Skip to content

Commit f7f1b95

Browse files
committed
consider cfg as private
1 parent f662147 commit f7f1b95

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

valuable/build.rs

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,9 @@ use std::env;
44

55
include!("no_atomic_cas.rs");
66

7-
// The rustc-cfg listed below are considered public API, but it is *unstable*
8-
// and outside of the normal semver guarantees:
9-
//
10-
// - `valuable_no_atomic_cas`
11-
// Assume the target does *not* support atomic CAS operations.
12-
// This is usually detected automatically by the build script, but you may
13-
// need to enable it manually when building for custom targets or using
14-
// non-cargo build systems that don't run the build script.
15-
//
16-
// With the exceptions mentioned above, the rustc-cfg strings below are
17-
// *not* public API. Please let us know by opening a GitHub issue if your build
18-
// environment requires some way to enable these cfgs other than by executing
19-
// our build script.
7+
// The rustc-cfg strings below are *not* public API. Please let us know by
8+
// opening a GitHub issue if your build environment requires some way to enable
9+
// these cfgs other than by executing our build script.
2010
fn main() {
2111
let target = match env::var("TARGET") {
2212
Ok(target) => target,

0 commit comments

Comments
 (0)