File: build.rs

package info (click to toggle)
rust-fs-err 3.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
extern crate autocfg;

fn main() {
    let ac = autocfg::new();
    // Allows `#[cfg(rustc_1_63)]` to be used in code
    ac.emit_rustc_version(1, 63);

    // Re-run if this file changes
    autocfg::rerun_path("build.rs");
}