From d647b8cbc1699db097b53a64722079433640c592 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 29 May 2021 17:03:29 +0100 Subject: [PATCH] Add openssh-keys as a dependency, prep for ssh key auth Signed-off-by: Ian Jackson --- Cargo.lock | 25 +++++++++++++++++++++++++ Cargo.toml | 1 + 2 files changed, 26 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 3f553e51..3dd4680c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1889,6 +1889,17 @@ dependencies = [ "rawpointer", ] +[[package]] +name = "md-5" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15" +dependencies = [ + "block-buffer 0.9.0", + "digest 0.9.0", + "opaque-debug 0.3.0", +] + [[package]] name = "memchr" version = "2.4.0" @@ -2273,6 +2284,19 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" +[[package]] +name = "openssh-keys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7249a699cdeea261ac73f1bf9350777cb867324f44373aafb5a287365bf1771" +dependencies = [ + "base64 0.13.0", + "byteorder", + "md-5", + "sha2", + "thiserror", +] + [[package]] name = "openssl" version = "0.10.34" @@ -2357,6 +2381,7 @@ dependencies = [ "num-derive", "num-traits", "once_cell", + "openssh-keys", "ordered-float", "otter-base", "parking_lot", diff --git a/Cargo.toml b/Cargo.toml index c836efe5..dc83077b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,6 +60,7 @@ num="0.4" num-derive="0.3" num-traits="0.2" once_cell="1" +openssh-keys="0.5" ordered-float="2" parking_lot="0.11" percent-encoding="2" -- 2.30.2