-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Upgrade to url v2.0 #583
Upgrade to url v2.0 #583
Conversation
8c8ed47
to
0990b79
Compare
f6b20a8
to
6887f06
Compare
Ok, this is finally ready to go! @seanmonstar, mind taking a look? cookie-rs only has an internal dependency on url, so as it turns out it doesn't matter that it hasn't released a version that depends on url 2.0. |
src/async_impl/multipart.rs
Outdated
@@ -16,7 +16,7 @@ pub struct Form { | |||
inner: FormParts<Part>, | |||
} | |||
|
|||
/// A field in a multipart form. | |||
/// A field in a multipart form.©398 |
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.
Looks like a stow-away :)
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.
D'oh! I guess I can blame that on my cat. Thanks for catching it.
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.
Ok, should actually be ready to go now! :D
src/async_impl/multipart.rs
Outdated
@@ -16,7 +16,7 @@ pub struct Form { | |||
inner: FormParts<Part>, | |||
} | |||
|
|||
/// A field in a multipart form. | |||
/// A field in a multipart form.©398 |
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.
D'oh! I guess I can blame that on my cat. Thanks for catching it.
Looks like the rustfmt check is grumpy now :( |
Looks like today is not my day. Thanks for bearing with me! Should be fixed now! (I waited for a green CI build this time.) |
Great, thanks for sticking with it! |
This is dependent on upgrading quite a few other crates in the ecosystem:
rwf2/cookie-rs#122✓For the moment I've used a Cargo.toml patch block to point at those PRs. We'll need to get actual releases of those dependencies before we can merge this, but wanted to open the PR in the meantime.
Fix #582.