Skip to content

Commit 4ca2a93

Browse files
committed
Make keyring member public (no need to be private)
1 parent ba92970 commit 4ca2a93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/web-bot-auth/src/keyring.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ pub enum Thumbprintable {
6262
/// Representation of a JSON Web Key Set
6363
#[derive(Eq, PartialEq, Debug, Clone, Serialize, Deserialize)]
6464
pub struct JSONWebKeySet {
65-
keys: Vec<Thumbprintable>,
65+
/// List of keys contained in the set.
66+
pub keys: Vec<Thumbprintable>,
6667
}
6768

6869
impl Thumbprintable {

0 commit comments

Comments
 (0)