-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Connector implementation crates have to pick http1/http2 #2376
Comments
benesch
added a commit
to benesch/hyper
that referenced
this issue
Dec 24, 2020
Make it possible to refer to Connected, Connection, HttpConnector, etc. without enabling either of the http1/http2 features. This makes feature selection work better for downstream libraries like hyper-openssl, which don't want to commit to any particular protocol. Fix hyperium#2376.
benesch
added a commit
to benesch/hyper
that referenced
this issue
Dec 24, 2020
Make it possible to refer to Connected, Connection, HttpConnector, etc. without enabling either of the http1/http2 features. This makes feature selection work better for downstream libraries like hyper-openssl, which don't want to commit to any particular protocol. Fix hyperium#2376.
benesch
added a commit
to benesch/hyper
that referenced
this issue
Dec 24, 2020
Make it possible to refer to Connected, Connection, HttpConnector, etc. without enabling either of the http1/http2 features. This makes feature selection work better for downstream libraries like hyper-openssl, which don't want to commit to any particular protocol. Fix hyperium#2376.
benesch
added a commit
to benesch/hyper
that referenced
this issue
Dec 24, 2020
Make it possible to refer to Connected, Connection, HttpConnector, etc. without enabling either of the http1/http2 features. This makes feature selection work better for downstream libraries like hyper-openssl, which don't want to commit to any particular protocol. Fix hyperium#2376.
benesch
added a commit
to benesch/hyper
that referenced
this issue
Dec 28, 2020
Make it possible to refer to Connected, Connection, HttpConnector, etc. without enabling either of the http1/http2 features. This makes feature selection work better for downstream libraries like hyper-openssl, which don't want to commit to any particular protocol. Fix hyperium#2376.
seanmonstar
pushed a commit
that referenced
this issue
Dec 28, 2020
Make it possible to refer to Connected, Connection, HttpConnector, etc. without enabling either of the http1/http2 features. This makes feature selection work better for downstream libraries like hyper-openssl, which don't want to commit to any particular protocol. Fix #2376.
BenxiangGe
pushed a commit
to BenxiangGe/hyper
that referenced
this issue
Jul 26, 2021
…2377) Make it possible to refer to Connected, Connection, HttpConnector, etc. without enabling either of the http1/http2 features. This makes feature selection work better for downstream libraries like hyper-openssl, which don't want to commit to any particular protocol. Fix hyperium#2376.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The low-level connection APIs like
Connected
/Connection
/HttpConnector
all require one ofhttp1
orhttp2
to be set. This means that external crates likehyper-openssl
have to pick one of those features to enable, which is kind of out of scope for what they actually need to do. It would probably make sense for those bits of the client API to only requireclient
and nothttp1
orhttp2
to make things less weird.The text was updated successfully, but these errors were encountered: