-
Notifications
You must be signed in to change notification settings - Fork 32
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
feat(protocol): Compressors #299
base: main
Are you sure you want to change the base?
Conversation
📚
|
177a828
to
83f5d1b
Compare
18dfbfa
to
370776c
Compare
c26ba4d
to
84fde57
Compare
cad0b62
to
317bfa7
Compare
84fde57
to
d340778
Compare
cabe5ab
to
ea28e34
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
where | ||
C: Compressor + Clone + core::fmt::Debug, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can relax this here entirely
where | ||
C: Compressor + Clone + core::fmt::Debug, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is clone + debug required here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think so in order for the struct to be Clone + Debug
since it's composition
Co-authored-by: Matthias Seitz <[email protected]>
c637b0d
to
c3f66e2
Compare
Description
Introduces compressors into
op-alloy-protocol
, cleaning up the brotli and zlib utility methods as well as theChannelOut
type.