Cargo's internal test suite is unfortunately failing after the update to url 2.1.1, and one thing we've narrowed down so far is that the behavior of this changed between 2.1.0 and 2.1.1:
use url::Url;
fn main() {
let mut url = Url::parse("git://github.com/foo/bar").unwrap();
println!("{:?}", url.set_scheme("https"));
}
On 2.1.0 this succeeded but on 2.1.1 this is now failing.
Is this an intended change or perhaps an accidental bug? If it's intended, is there a way we can get this working?
Cargo's internal test suite is unfortunately failing after the update to
url2.1.1, and one thing we've narrowed down so far is that the behavior of this changed between 2.1.0 and 2.1.1:On 2.1.0 this succeeded but on 2.1.1 this is now failing.
Is this an intended change or perhaps an accidental bug? If it's intended, is there a way we can get this working?