File: build.rs

package info (click to toggle)
rust-rand-chacha 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 128 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 149 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
extern crate autocfg;

fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    let ac = autocfg::new();
    ac.emit_rustc_version(1, 26);
}