Skip to content

Commit 09066e0

Browse files
mdegelbavshin-f5
authored andcommitted
Fix: change caa_identities field to be optional in DirectoryMetadata
1 parent 013f8f6 commit 09066e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/acme/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub struct DirectoryMetadata {
2020
pub terms_of_service: Option<String>,
2121
#[serde(with = "http_serde::option::uri")]
2222
pub website: Option<Uri>,
23-
pub caa_identities: Vec<String>,
23+
pub caa_identities: Option<Vec<String>>,
2424
pub external_account_required: Option<bool>,
2525
}
2626

0 commit comments

Comments
 (0)