File: 2002_break_dep_cycle.patch

package info (click to toggle)
rust-bounded-static 0.8.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: makefile: 2; sh: 1
file content (436 lines) | stat: -rw-r--r-- 10,620 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
Description: break cyclic dependency
Author: Jonas Smedegaard <dr@jones.dk>
Bug-Debian: https://bugs.debian.org/1094199
Forwarded: not-needed
Last-Update: 2025-02-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/bounded-static-derive/Cargo.toml
+++ b/bounded-static-derive/Cargo.toml
@@ -17,6 +17,3 @@
 syn.workspace = true
 quote.workspace = true
 proc-macro2.workspace = true
-
-[dev-dependencies]
-bounded-static = { workspace = true, features = [ "derive" ] }
\ No newline at end of file
--- a/bounded-static-derive/tests/integration_tests.rs
+++ /dev/null
@@ -1,387 +0,0 @@
-use bounded_static::{IntoBoundedStatic, ToBoundedStatic, ToStatic};
-use std::borrow::Cow;
-
-#[test]
-fn test_struct_named_fields_1() {
-    #[derive(ToStatic)]
-    struct Foo<'a> {
-        value: Cow<'a, str>,
-    }
-    let value = String::from("value");
-    let data = Foo {
-        value: Cow::from(&value),
-    };
-    let owned = data.to_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_struct_named_fields_2() {
-    #[derive(ToStatic)]
-    struct Foo<'a, 'b> {
-        u8_value: u8,
-        static_str: &'static str,
-        owned_str: String,
-        value: Cow<'a, str>,
-        bar: Vec<Bar<'b>>,
-    }
-    #[derive(ToStatic)]
-    struct Bar<'a> {
-        u8_value: u8,
-        static_str: &'static str,
-        owned_str: String,
-        value: Cow<'a, str>,
-    }
-    let value = String::from("value");
-    let bar = Bar {
-        u8_value: 0,
-        static_str: "",
-        owned_str: String::from(""),
-        value: Cow::from(&value),
-    };
-    let data = Foo {
-        u8_value: 0,
-        static_str: "",
-        owned_str: String::from(""),
-        value: Cow::from(&value),
-        bar: vec![bar],
-    };
-    let owned = data.to_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_no_generics_or_lifetimes() {
-    #[derive(ToStatic)]
-    struct Foo(u32);
-    let data = Foo(0);
-    ensure_static(data.to_static())
-}
-
-#[test]
-fn test_struct_named_fields_no_generics() {
-    #[derive(ToStatic)]
-    struct Foo {
-        foo: String,
-        bar: &'static str,
-    }
-    let data = Foo {
-        foo: String::from("value"),
-        bar: "test",
-    };
-    let owned = data.to_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_struct_unnamed_fields() {
-    #[derive(ToStatic)]
-    struct Foo<'a>(String, Cow<'a, str>, u16, Bar<'a>);
-    #[derive(ToStatic)]
-    struct Bar<'a> {
-        bar: Cow<'a, str>,
-    }
-    let value = String::from("value");
-    let data = Foo(
-        String::from("test"),
-        Cow::from(&value),
-        99,
-        Bar {
-            bar: Cow::from(&value),
-        },
-    );
-    ensure_static(data.to_static());
-}
-
-#[test]
-fn test_struct_unnamed_fields_no_generics() {
-    #[derive(ToStatic)]
-    struct Foo(String, &'static str);
-    let data = Foo(String::from("value"), "test");
-    let owned = data.to_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_unit_struct() {
-    #[derive(ToStatic)]
-    struct Foo;
-    let data = Foo;
-    ensure_static(data.to_static());
-}
-
-#[test]
-fn test_struct_complex_lifetimes() {
-    #[derive(ToStatic)]
-    struct Foo<'a, 'b, R, T: 'b>
-    where
-        'b: 'a,
-        R: 'a,
-        T: 'a,
-    {
-        baz: T,
-        a: Cow<'a, str>,
-        b: Cow<'b, str>,
-        r: R,
-    }
-
-    let value = String::from("value");
-    let data = Foo {
-        baz: 0isize,
-        a: Cow::from(&value),
-        b: Cow::from(&value),
-        r: "test",
-    };
-    let owned = data.to_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_struct_named_fields_into() {
-    #[derive(ToStatic)]
-    struct Foo<'a> {
-        value: Cow<'a, str>,
-    }
-    let value = String::from("value");
-    let data = Foo {
-        value: Cow::from(&value),
-    };
-    let owned = data.into_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_struct_unnamed_fields_into() {
-    #[derive(ToStatic)]
-    struct Foo<'a>(String, Cow<'a, str>, u16, Bar<'a>);
-    #[derive(ToStatic)]
-    struct Bar<'a> {
-        bar: Cow<'a, str>,
-    }
-    let value = String::from("value");
-    let data = Foo(
-        String::from("test"),
-        Cow::from(&value),
-        99,
-        Bar {
-            bar: Cow::from(&value),
-        },
-    );
-    ensure_static(data.into_static());
-}
-
-#[test]
-fn test_unit_struct_into() {
-    #[derive(ToStatic)]
-    struct Foo;
-    let data = Foo;
-    ensure_static(data.into_static());
-}
-
-#[test]
-fn test_enum() {
-    #[derive(ToStatic)]
-    enum Foo<'a> {
-        Unit,
-        Named { name: String, age: i8 },
-        First(Cow<'a, str>, Cow<'a, str>),
-        Second(Bar<'a>),
-        Third(i128, bool, &'static str),
-    }
-    #[derive(ToStatic)]
-    struct Bar<'a> {
-        bar: Cow<'a, str>,
-    }
-    let value = String::from("value");
-    let unit = Foo::Unit;
-    ensure_static(unit.to_static());
-    let named = Foo::Named {
-        name: String::from("test"),
-        age: 10,
-    };
-    ensure_static(named.to_static());
-    let first = Foo::First(Cow::from(&value), Cow::from(&value));
-    ensure_static(first.to_static());
-    let second = Foo::Second(Bar {
-        bar: Cow::from(&value),
-    });
-    ensure_static(second.to_static());
-    let third = Foo::Third(100, true, "test");
-    ensure_static(third.to_static());
-}
-
-#[test]
-fn test_enum_into() {
-    #[derive(ToStatic)]
-    enum Foo<'a> {
-        Unit,
-        Named { name: String, age: i8 },
-        First(Cow<'a, str>, Cow<'a, str>),
-        Second(Bar<'a>),
-        Third(i128, bool, &'static str),
-    }
-    #[derive(ToStatic)]
-    struct Bar<'a> {
-        bar: Cow<'a, str>,
-    }
-    let value = String::from("value");
-    let unit = Foo::Unit;
-    ensure_static(unit.into_static());
-    let named = Foo::Named {
-        name: String::from("test"),
-        age: 10,
-    };
-    ensure_static(named.into_static());
-    let first = Foo::First(Cow::from(&value), Cow::from(&value));
-    ensure_static(first.into_static());
-    let second = Foo::Second(Bar {
-        bar: Cow::from(&value),
-    });
-    ensure_static(second.into_static());
-    let third = Foo::Third(100, true, "test");
-    ensure_static(third.into_static());
-}
-
-#[test]
-fn test_thread_spawn() {
-    #[derive(Debug, Eq, PartialEq, ToStatic)]
-    struct Foo<'a> {
-        foo: Cow<'a, str>,
-        bar: Vec<Bar<'a>>,
-    }
-    #[derive(Debug, Eq, PartialEq, ToStatic)]
-    enum Bar<'a> {
-        First,
-        Second(Cow<'a, str>),
-    }
-    let value = String::from("data");
-    let data = Foo {
-        foo: Cow::from(&value),
-        bar: vec![Bar::First, Bar::Second(Cow::from(&value))],
-    };
-    let data_static = data.into_static();
-    std::thread::spawn(move || {
-        assert_eq!(data_static.foo, "data");
-        assert_eq!(
-            data_static.bar,
-            vec![Bar::First, Bar::Second("data".into())]
-        )
-    })
-    .join()
-    .unwrap();
-}
-
-#[test]
-fn test_const_generics_struct() {
-    #[derive(ToStatic)]
-    struct Foo<'a, const N: usize, const M: usize> {
-        value: Cow<'a, str>,
-        left: [usize; N],
-        right: [usize; M],
-    }
-    let value = String::from("value");
-    let data = Foo {
-        value: Cow::from(&value),
-        left: [0],
-        right: [0, 1, 2],
-    };
-    let owned = data.to_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_const_generics_struct_into() {
-    #[derive(ToStatic)]
-    struct Foo<'a, const N: usize, const M: usize, const Q: bool> {
-        value: Cow<'a, str>,
-        left: [usize; N],
-        right: [usize; M],
-    }
-    let value = String::from("value");
-    let data = Foo::<'_, 1, 3, true> {
-        value: Cow::from(&value),
-        left: [0],
-        right: [0, 1, 2],
-    };
-    let owned = data.into_static();
-    ensure_static(owned);
-}
-
-#[test]
-fn test_generic_bound_1() {
-    #[derive(ToStatic)]
-    struct Baz<'a, T: Into<String> + 'a> {
-        t: T,
-        r: Cow<'a, str>,
-    }
-    let value = String::from("test");
-    let data = Baz {
-        t: "",
-        r: Cow::from(&value),
-    };
-    ensure_static(data.to_static());
-}
-
-#[test]
-fn test_generic_bound_2() {
-    trait Foo {}
-    trait Bar {}
-
-    impl Foo for String {}
-    impl Bar for String {}
-    impl<T: ToOwned + ?Sized> Foo for Cow<'_, T> {}
-    impl<T: ToOwned + ?Sized> Bar for Cow<'_, T> {}
-
-    #[derive(ToStatic)]
-    struct Baz<T: Foo + Bar, R: Foo> {
-        t: T,
-        r: R,
-    }
-    let value = String::from("test");
-    let data = Baz {
-        t: Cow::from(&value),
-        r: String::from("test"),
-    };
-    ensure_static(data.to_static());
-}
-
-#[test]
-fn test_generic_bound_3() {
-    #[derive(ToStatic)]
-    struct Baz<'a, T: Into<String>>(T, Cow<'a, str>);
-    let value = String::from("test");
-    let data = Baz("", Cow::from(&value));
-    ensure_static(data.to_static());
-}
-
-#[test]
-fn test_generic_bound_where_1() {
-    #[derive(ToStatic)]
-    struct Baz<'a, T: Foo>(T, Cow<'a, str>)
-    where
-        T: Into<String>;
-    trait Foo {}
-    impl Foo for &str {}
-    let value = String::from("test");
-    let data = Baz("", Cow::from(&value));
-    ensure_static(data.to_static());
-}
-
-#[test]
-fn test_generic_bound_where_2() {
-    #[derive(ToStatic)]
-    struct Baz<'a, T: Foo>(T, Cow<'a, str>)
-    where
-        T: Into<String> + 'a + Bar;
-    trait Foo {}
-    impl Foo for &str {}
-    trait Bar {}
-    impl Bar for &str {}
-    let value = String::from("test");
-    let data = Baz("", Cow::from(&value));
-    ensure_static(data.into_static());
-}
-
-fn ensure_static<S: 'static>(s: S) {
-    drop(s);
-}
--- a/bounded-static-derive/src/common.rs
+++ b/bounded-static-derive/src/common.rs
@@ -44,7 +44,7 @@
 ///
 /// This `struct` will pass validation as the reference is `'static`:
 ///
-/// ```rust
+/// ```ignore
 /// # use bounded_static::ToStatic;
 /// #[derive(ToStatic)]
 /// struct Foo {
@@ -54,7 +54,7 @@
 ///
 /// This `struct` is will also pass validation as it can be converted to `'static` _for all_ lifetimes `'a`:
 ///
-/// ```rust
+/// ```ignore
 /// # use bounded_static::ToStatic;
 /// #[derive(ToStatic)]
 /// struct Foo<'a> {
@@ -109,7 +109,7 @@
 ///
 /// We wish to produce (for example for `ToBoundedStatic`, similar for `IntoBoundedStatic`):
 ///
-/// ```rust
+/// ```ignore
 /// # use std::borrow::Cow;
 /// # struct Baz<'a, T: Into<String> + 'a> {
 /// #    t: T,