Codebase list rust-libslirp / f343589
* Package ring 0.16.9 from crates.io using debcargo 2.4.2 * use-array-iter.patch: Fix usage of array::into_iter Thanks to Logan Rosen (Closes: #961387) Sylvestre Ledru 3 years ago
3 changed file(s) with 33 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-ring (0.16.9-4) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package ring 0.16.9 from crates.io using debcargo 2.4.2
3 * use-array-iter.patch: Fix usage of array::into_iter
4 Thanks to Logan Rosen (Closes: #961387)
5
6 -- Sylvestre Ledru <sylvestre@debian.org> Sat, 23 May 2020 23:17:42 +0200
7
08 rust-ring (0.16.9-3) unstable; urgency=medium
19
210 * Team upload.
00 relax-deps.patch
11 built-using.patch
2 use-array-iter.patch
3
0 From c250e3125e2621cbe947e811e3de0fc5fa1904aa Mon Sep 17 00:00:00 2001
1 From: lzutao <taolzu@gmail.com>
2 Date: Wed, 30 Oct 2019 14:51:17 +0700
3 Subject: [PATCH] Use array::iter
4
5 See clippy::into_iter lint and https://github.com/rust-lang/rust/pull/65819
6 ---
7 build.rs | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/build.rs b/build.rs
11 index c6cb3a700..f7eded9de 100644
12 --- a/build.rs
13 +++ b/build.rs
14 @@ -418,7 +418,7 @@ fn build_c_code(target: &Target, pregenerated: PathBuf, out_dir: &Path) {
15
16 // XXX: Ideally, ring-test would only be built for `cargo test`, but Cargo
17 // can't do that yet.
18 - libs.into_iter()
19 + libs.iter()
20 .for_each(|&(lib_name, srcs, additional_srcs)| {
21 build_library(
22 &target,