From edc59888c765d68fbae58d37542126110b3f7cce Mon Sep 17 00:00:00 2001 From: Thomas Braun <38082993+tbraun96@users.noreply.github.com> Date: Sun, 22 Oct 2023 08:30:47 -0400 Subject: [PATCH] Update macros.rs Allow public access to bytes --- oqs/src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oqs/src/macros.rs b/oqs/src/macros.rs index 1e3e3f59b6..fce3be7c2c 100644 --- a/oqs/src/macros.rs +++ b/oqs/src/macros.rs @@ -10,7 +10,7 @@ macro_rules! newtype_buffer { #[derive(Debug, Clone, PartialEq, Eq)] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] pub struct $name { - bytes: Vec, + pub bytes: Vec, } impl $name {