-
Notifications
You must be signed in to change notification settings - Fork 998
New issue
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
misc: make RwStreamSink
an implementation detail of the memory transport
#4345
Comments
@mxinden Let me know if you agree. |
I don't have a strong opinion on this. That said, I don't recall this crate causing any significant work. I suggest not investing the time to remove it until such significant work would otherwise be required. |
It is true that there is not active workload on the crate. It does cause passive, cognitive complexity because it shows up in the project explorer and in our list of CI jobs. Thus, I think it is a net positive work item and a great candidate for an external contribution. |
👍 in favor of removing |
As far as I can tell So IMO we should keep it as a crate in |
The crate
rw-stream-sink
is a top-level crate in ourmisc/
directory but it is only in use in two places:multistream-select
To lower the maintenance effort of the repository, I'd like this crate to be inlined into the memory-transport implementation, ideally as an implementation detail (i.e. not part of the public API).
rw-stream-sink
is still published on crates.io, so my suggestion would be to simply depend on it via that for themultistream-select
test. This allows us to delete the crate from our repository and move the code into the memory-transport implementation.The text was updated successfully, but these errors were encountered: