Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upHyper and rust-url disagree about how to parse URLs #24175
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the
http_loaderwe convert URLs fromrust-urltohyper, for example when constructing aRefereratservo/components/net/http_loader.rs
Line 886 in 6ed204d
The problem is that this may fail, because
rust-urlandhyperhave different parsers, for examplerust-urlacceptshttp://"empty_script.js/?id=5\\%22buthyperdoesn't. This came up during testing. #24148 (comment)