Skip to content

Commit

Permalink
Cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
KYovchevski committed Nov 28, 2022
1 parent 22af04d commit 8003c62
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ fn compile_bindings() {
.woff()
.target_isas(target_isas)
.math_lib(MathLib::Fast)
.bindgen_builder(builder()
.allowlist_function("resample_with_cache_3")
.allowlist_function("resample_with_cache_4")
.allowlist_function("calculate_weights")
.allowlist_function("calculate_weight_variables"))
.bindgen_builder(
builder()
.allowlist_function("resample_with_cache_3")
.allowlist_function("resample_with_cache_4")
.allowlist_function("calculate_weights")
.allowlist_function("calculate_weight_variables"),
)
.out_dir("src/ispc")
.compile("downsample_ispc");
}
Expand Down

0 comments on commit 8003c62

Please sign in to comment.