We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e22b87b commit b0a3303Copy full SHA for b0a3303
src/acme/types.rs
@@ -10,7 +10,7 @@ use std::string::{String, ToString};
10
11
use http::Uri;
12
use ngx::collections::Vec;
13
-use serde::{Deserialize, Serialize};
+use serde::{de::IgnoredAny, Deserialize, Serialize};
14
15
use crate::conf::identifier::Identifier;
16
@@ -22,7 +22,7 @@ pub struct DirectoryMetadata {
22
pub website: Option<Uri>,
23
pub caa_identities: Vec<String>,
24
pub external_account_required: Option<bool>,
25
- pub profiles: std::collections::BTreeMap<String, String>,
+ pub profiles: std::collections::BTreeMap<String, IgnoredAny>,
26
}
27
28
/// RFC8555 Section 7.1.1 Directory
0 commit comments