Skip to content

Commit

Permalink
Upgrade openssl and hyper-tls
Browse files Browse the repository at this point in the history
  • Loading branch information
jtgeibel committed Oct 25, 2018
1 parent 958ee4f commit ddc5eba
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 45 deletions.
57 changes: 16 additions & 41 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ url = "1.2.1"
tar = "0.4.13"
base64 = "0.9"

openssl = "0.9.14"
openssl = "0.10.13"
oauth2 = "0.3"
log = "0.3"
env_logger = "0.5"
Expand Down Expand Up @@ -78,7 +78,7 @@ civet = "0.9"
[dev-dependencies]
conduit-test = "0.8"
hyper = "0.12"
hyper-tls = "0.2"
hyper-tls = "0.3"
futures = "0.1"
lazy_static = "1.0"
tokio-core = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ path = "lib.rs"
[dependencies]
base64 = "0.6"
chrono = "0.4"
openssl = "0.9"
openssl = "0.10.13"
reqwest = "0.9.1"
2 changes: 1 addition & 1 deletion src/uploaders.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,5 +262,5 @@ fn verify_tarball(
fn hash(data: &[u8]) -> Vec<u8> {
let mut hasher = Hasher::new(MessageDigest::sha256()).unwrap();
hasher.update(data).unwrap();
hasher.finish2().unwrap().to_vec()
hasher.finish().unwrap().to_vec()
}

0 comments on commit ddc5eba

Please sign in to comment.