Closed yannduperis closed 2 months ago
FYI, if you are building a client (which it sounds like you are doing), you may want to ask to get it listed in the RDAP Guide.
Thanks for the PR and if you have any other suggestions or ideas, please feel free to submit them.
I tried using the library in an async context (in a Tauri app within a
#[tauri:command]
) and went through hell because the compiler complainedBootstrapStore
doesn't implementSend
.I trivially modified the trait and its implementation (
MemoryBootstrapStore
) to implement bothSend
andSync
.It works in my app and passes unit-tests.