We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
relayer
Let's get out of dependency hell and downgrade back to Tokio 0.2 for the low price of a Mutex lock when blocking on async task.
Mutex
The upgrade to Tokio 0.3 was poorly planned by myself, and done way to eagerly, which landed us in a dependency hell.
Downgrade Tokio to v0.2, and wrap the tokio Runtime in a Arc<Mutex<_>>.
Runtime
Arc<Mutex<_>>
The text was updated successfully, but these errors were encountered:
romac
Successfully merging a pull request may close this issue.
Crate
relayer
Summary
Let's get out of dependency hell and downgrade back to Tokio 0.2 for the low price of a
Mutex
lock when blocking on async task.Problem Definition
The upgrade to Tokio 0.3 was poorly planned by myself, and done way to eagerly, which landed us in a dependency hell.
Proposal
Downgrade Tokio to v0.2, and wrap the tokio
Runtime
in aArc<Mutex<_>>
.For Admin Use
The text was updated successfully, but these errors were encountered: