You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Generator type is an iterable which uses a generator function that yields
values. In affected versions of the crate, the provided function yielding values
had no Send bounds despite the Generator itself implementing Send.
The generator function lacking a Send bound means that types that are
dangerous to send across threads such as Rc could be sent as part of a
generator, potentially leading to data races.
This flaw was fixed in commit f7d120a3b
by enforcing that the generator function be bound by Send.
generator
0.6.25
>=0.7.0
The
Generator
type is an iterable which uses a generator function that yieldsvalues. In affected versions of the crate, the provided function yielding values
had no
Send
bounds despite theGenerator
itself implementingSend
.The generator function lacking a
Send
bound means that types that aredangerous to send across threads such as
Rc
could be sent as part of agenerator, potentially leading to data races.
This flaw was fixed in commit
f7d120a3b
by enforcing that the generator function be bound by
Send
.See advisory page for additional details.
The text was updated successfully, but these errors were encountered: