aboutsummaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2022-12-13 14:15:06 +0100
committerJeff Vander Stoep <jeffv@google.com>2022-12-13 14:16:39 +0100
commit6229992cbe96fbbf719aa4fdbede3888ffea67ba (patch)
tree756e01e069080219bb1bb7487156c9f88919b97a /build.rs
parent2bfe0b856493f125b6182750a099a577c7835d07 (diff)
downloadrayon-6229992cbe96fbbf719aa4fdbede3888ffea67ba.tar.gz
Upgrade rayon to 1.6.1main-16k-with-phones
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update rust/crates/rayon For more info, check https://cs.android.com/android/platform/superproject/+/master:tools/external_updater/README.md Test: TreeHugger Change-Id: I55672395408c0a770cc19a909a94f46b6fccfd38
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/build.rs b/build.rs
deleted file mode 100644
index e52e326..0000000
--- a/build.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-fn main() {
- let ac = autocfg::new();
- if ac.probe_expression("(0..10).step_by(2).rev()") {
- autocfg::emit("step_by");
- }
- if ac.probe_expression("{ fn foo<const N: usize>() {} }") {
- autocfg::emit("min_const_generics");
- }
-}