Use explicit crate features (#100)

This commit is contained in:
daxpedda
2023-02-01 11:37:47 -08:00
committed by GitHub
parent 2787151e1d
commit 5bce3e3206
6 changed files with 16 additions and 19 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ use crate::{CipherSuite, Error, Group, Result};
#[cfg_attr(
feature = "serde",
derive(serde::Deserialize, serde::Serialize),
serde(crate = "serde", bound = "")
serde(bound = "")
)]
pub struct OprfClient<CS: CipherSuite>
where
@@ -59,7 +59,7 @@ where
#[cfg_attr(
feature = "serde",
derive(serde::Deserialize, serde::Serialize),
serde(crate = "serde", bound = "")
serde(bound = "")
)]
pub struct OprfServer<CS: CipherSuite>
where