Codebase list rust-libslirp / e984861
sized-chunks: disable refpool, arbitraray and array-ops featuresets for now Peter Michael Green 3 years ago
3 changed file(s) with 51 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 rust-sized-chunks (0.6.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
0 rust-sized-chunks (0.6.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
11
2 * Team upload.
3 * Package sized-chunks 0.6.2 from crates.io using debcargo 2.4.2
4 * Disable the refpool, arbitrary, array-ops and ringbuffer features
5 for now as rust-refpool is not in Debian and the ftp-masters are
6 currently blocking new rust packages.
7
8 [ Ximin Luo ]
29 * Package sized-chunks 0.6.1 from crates.io using debcargo 2.4.2
310
4 -- Ximin Luo <infinity0@debian.org> Sat, 18 Apr 2020 15:23:45 +0100
11 -- Peter Michael Green <plugwash@debian.org> Tue, 01 Sep 2020 09:20:29 +0000
512
613 rust-sized-chunks (0.3.1-1) unstable; urgency=medium
714
0 Index: sized-chunks/Cargo.toml
1 ===================================================================
2 --- sized-chunks.orig/Cargo.toml
3 +++ sized-chunks/Cargo.toml
4 @@ -29,20 +29,20 @@ all-features = true
5 [[bench]]
6 name = "sized_chunk"
7 harness = false
8 -[dependencies.arbitrary]
9 -version = "0.4"
10 -optional = true
11 +#[dependencies.arbitrary]
12 +#version = "0.4"
13 +#optional = true
14
15 -[dependencies.array-ops]
16 -version = "0.1"
17 -optional = true
18 +#[dependencies.array-ops]
19 +#version = "0.1"
20 +#optional = true
21
22 [dependencies.bitmaps]
23 version = "2.0.0"
24
25 -[dependencies.refpool]
26 -version = "0.4"
27 -optional = true
28 +#[dependencies.refpool]
29 +#version = "0.4"
30 +#optional = true
31
32 [dependencies.typenum]
33 version = "1.11.2"
34 @@ -51,5 +51,5 @@ version = "0.3"
35
36 [features]
37 default = ["std"]
38 -ringbuffer = ["array-ops"]
39 +#ringbuffer = ["array-ops"]
40 std = []