Skip to content
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

add TryFrom for AccessControlAllowOrigin #89

Merged
merged 3 commits into from Sep 16, 2021
Merged

add TryFrom for AccessControlAllowOrigin #89

merged 3 commits into from Sep 16, 2021

Conversation

ghost
Copy link

@ghost ghost commented Sep 16, 2021

There is currently no way to build an AccessControlAllowOrigin with an actual origin value that isn't Any or Null. This PR adds a TryFrom trait to that header to fix this.

I added a line in the doctest and an additional test to cover this new trait.

It's a bit of an ugly implementation, because the only way to build an OriginOrAny at present is to try_from_values with an iterator.

@ghost
Copy link
Author

ghost commented Sep 16, 2021

Wrote a TryFrom for &HeaderValue -> OriginOrAny so there isn't an unnecessary vec! and .iter() in there. Also changed the input type to a &str.

Let me know what you think. @seanmonstar

This partially fixes #48, would need to repeat a similar process across the other headers.

Copy link
Member

@seanmonstar seanmonstar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks clean to me, thanks!

@ghost
Copy link
Author

ghost commented Sep 16, 2021

Thanks! The CI error looks to be that bitflags MSRV is 1.46, while we're building on 1.41. Could we move the MSRV up to 1.46?

@seanmonstar
Copy link
Member

Yea, that seems reasonable. hyper is already set to 1.46 as well.

@ghost
Copy link
Author

ghost commented Sep 16, 2021

Changed to 1.46 in the Github Action. Didn't see any mentions of MSRV in the docs. Should pass the CI now.

@seanmonstar seanmonstar merged commit 2d9a5c4 into hyperium:master Sep 16, 2021
@seanmonstar
Copy link
Member

Thanks :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant