toml
toml copied to clipboard
Add Send + Sync for TableLike apis
The current TableLike
apis uses dyn TableLike
without Send
or Sync
, while there is unlikely to be anything that blocks them from being Send
or Sync
.
To extend the usage of these features, I added Send + Sync
on these apis.