slint/helper_crates/vtable/src
Olivier Goffart 8888e547a5 vtable: Fix soundess issue of VRc::into_dyn for !Send types
Dyn is currently Send+Sync, so `VRc<WhateverVTable, Dyn>` is also
Send+Sync. So we shouldn't really allow conversion between
`VRc<WhateverVTable, SomeThingNotSend>` to `VRc<_, Dyn>` that can be
sent between threads

This is a breaking change of the vtable crate, but also a soundness fix

Also VRc shouldn't be shared between thread if the vtable itself can't
be shared between threads
2024-02-26 14:45:47 +01:00
..
compile_fail_tests.rs xtask: Fix up license headers 2023-08-17 08:55:28 +02:00
lib.rs janitor: Fix clippy errors about wrong clone implementations 2023-09-20 20:23:38 +02:00
vrc.rs vtable: Fix soundess issue of VRc::into_dyn for !Send types 2024-02-26 14:45:47 +01:00