From d6d5a9341456a11b90d3b4a22cff80f898221a5d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 31 May 2021 00:46:23 +0100 Subject: [PATCH] sshkeys: Make KeySpec fields pub (!) Signed-off-by: Ian Jackson --- src/sshkeys.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sshkeys.rs b/src/sshkeys.rs index 35780caf..53924564 100644 --- a/src/sshkeys.rs +++ b/src/sshkeys.rs @@ -68,8 +68,8 @@ pub struct ScopeKey { #[derive(Debug,Clone,Serialize,Deserialize)] pub struct KeySpec { - id: sshkeys::Id, - nonce: sshkeys::Nonce, + pub id: sshkeys::Id, + pub nonce: sshkeys::Nonce, } mod veneer { -- 2.30.2