Auto merge of #16011 - mbrubeck:always-be-updating, r=emilio

Upgrade dependencies with minor updates

Closes #16008

- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because there are no code changes
This commit is contained in:
bors-servo 2017-03-17 07:41:09 -07:00 committed by GitHub
commit f873a4aba5
2 changed files with 351 additions and 339 deletions

689
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -744,6 +744,7 @@ fn test_load_sets_default_accept_to_html_xhtml_xml_and_then_anything_else() {
qitem(Mime(TopLevel::Text, SubLevel::Html, vec![])), qitem(Mime(TopLevel::Text, SubLevel::Html, vec![])),
qitem(Mime(TopLevel::Application, SubLevel::Ext("xhtml+xml".to_owned()), vec![])), qitem(Mime(TopLevel::Application, SubLevel::Ext("xhtml+xml".to_owned()), vec![])),
QualityItem::new(Mime(TopLevel::Application, SubLevel::Xml, vec![]), Quality(900)), QualityItem::new(Mime(TopLevel::Application, SubLevel::Xml, vec![]), Quality(900)),
QualityItem::new(Mime(TopLevel::Star, SubLevel::Star, vec![]), Quality(800)),
]))); ])));
response.send(b"Yay!").unwrap(); response.send(b"Yay!").unwrap();
}; };