Skip to content

Commit

Permalink
Update ureq, fixing broken redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
jyn514 committed Dec 6, 2020
1 parent cf04292 commit caf2364
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
22 changes: 8 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ num_cpus = "1.8"
once_cell = "1.5.1"
rayon = "1.0"
regex = { version = "1", default-features = false, features = ["std", "perf"] }
ureq = { version = "1.5.2", features = ["tls"], default-features = false }
ureq = { version = "1.5.4", features = ["tls"], default-features = false }
serde = "1.0"
serde_derive = "1.0"
url = "2"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//! <https://tinyurl.com/rnxcavf>
use std::{
fmt,
path::{Path, PathBuf},
Expand Down
2 changes: 2 additions & 0 deletions tests/working_http_check/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/// Foo function
///
/// Has something to do with [some website](http://example.com).
///
/// Should also follow 308 redirects: <https://tinyurl.com/rnxcavf>
pub fn foo() {}

/// Bar function
Expand Down

0 comments on commit caf2364

Please sign in to comment.