fix(rp): Start the proper rosenpass server on a dedicated thread

We should not block the tokio executor indefinetly.
This commit is contained in:
Karolin Varner
2025-08-02 19:13:21 +02:00
parent 2d6550da0f
commit a1698f36a6
4 changed files with 9 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ pub struct InferKeyedHash<Static, const KEY_LEN: usize, const HASH_LEN: usize>
where
Static: KeyedHash<KEY_LEN, HASH_LEN>,
{
pub _phantom_keyed_hasher: PhantomData<*const Static>,
pub _phantom_keyed_hasher: PhantomData<Static>,
}
impl<Static, const KEY_LEN: usize, const HASH_LEN: usize> InferKeyedHash<Static, KEY_LEN, HASH_LEN>