-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Replacing liburl with rust-url #204
Comments
I believe that we may try bootstrapping ourselves once we get a lock file implemented. We've otherwise got all the tools we need (I believe) to bootstrap, so hopefully we'll just use cargo to install! |
alexcrichton
added a commit
to alexcrichton/cargo
that referenced
this issue
Jul 30, 2014
The standard url library is soon-to-be deprecated, and now that we're bootstrapping it's trivial to move over to rust-url. Closes rust-lang#204
bors
added a commit
that referenced
this issue
Jul 30, 2014
The standard url library is soon-to-be deprecated, and now that we're bootstrapping it's trivial to move over to rust-url. Closes #204
alexcrichton
added a commit
to alexcrichton/cargo
that referenced
this issue
Sep 2, 2014
The standard url library is soon-to-be deprecated, and now that we're bootstrapping it's trivial to move over to rust-url. Closes rust-lang#204
bors
added a commit
to alexcrichton/cargo
that referenced
this issue
Sep 2, 2014
The standard url library is soon-to-be deprecated, and now that we're bootstrapping it's trivial to move over to rust-url. Closes rust-lang#204
ehuss
pushed a commit
to ehuss/cargo
that referenced
this issue
Nov 19, 2023
use new cargo fmt option
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cargo currently uses the
url
crate distributed with rustc. As it has a number of issues, I rewrote it as rust-url, based on http://url.spec.whatwg.org/ , and I’m pushing to have it replaced in the rustc distribution:rust-lang/rust#10707
https://github.com/SimonSapin/rust-url
Please let me know how I can help, such as what needs to change in rust-url for Cargo to use it. I suspect you’ll at least want an API to override
is_relative_scheme
to include thegit
andssh
schemes, but there’s probably more.rust-url itself builds with Cargo right now, which could make bootstraping "interesting". But a Makefile like in Servo should work around that.
The text was updated successfully, but these errors were encountered: