Codebase list rust-libslirp / 231fb20
pin-project - remove unsastisfiable dev-dependency. Peter Michael Green 1 year, 10 months ago
3 changed file(s) with 53 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
22 * Team upload.
33 * Package pin-project 1.0.10 from crates.io using debcargo 2.5.0 (Closes: 1013106)
44 * Drop readd-dev-deps.diff, no longer needed.
5 * Drop dev-dependency on macrotest and disable the tests that use it
6 so the rest of the tests can run.
57
68 -- Peter Michael Green <plugwash@debian.org> Tue, 21 Jun 2022 11:51:08 +0000
79
0 Index: pin-project/Cargo.toml
1 ===================================================================
2 --- pin-project.orig/Cargo.toml
3 +++ pin-project/Cargo.toml
4 @@ -20,12 +20,43 @@ keywords = ["pin", "macros", "attribute"
5 categories = ["no-std", "rust-patterns"]
6 license = "Apache-2.0 OR MIT"
7 repository = "https://github.com/taiki-e/pin-project"
8 +autotests = false
9 +
10 +[[test]]
11 +name = "auxiliary"
12 +path = "tests/auxiliary/mod.rs"
13 +
14 +[[test]]
15 +name = "drop_order"
16 +
17 +[[test]]
18 +name = "pin_project"
19 +
20 +[[test]]
21 +name = "repr_packed"
22 +
23 +[[test]]
24 +name = "cfg"
25 +
26 +[[test]]
27 +name = "lint"
28 +
29 +[[test]]
30 +name = "proper_unpin"
31 +
32 +[[test]]
33 +name = "compiletest"
34 +
35 +[[test]]
36 +name = "pinned_drop"
37 +
38 +[[test]]
39 +name = "unsafe_unpin"
40 +
41 [package.metadata.docs.rs]
42 targets = ["x86_64-unknown-linux-gnu"]
43 [dependencies.pin-project-internal]
44 version = "=1.0.10"
45 -[dev-dependencies.macrotest]
46 -version = "1.0.8"
47
48 [dev-dependencies.rustversion]
49 version = "1"
0 remove-macrotest.patch