From bd93205ab46be659a39c54bbb2a2e347ae536ef5 Mon Sep 17 00:00:00 2001 From: Jesse Schulman Date: Tue, 11 Jun 2024 16:34:03 -0700 Subject: [PATCH 1/2] Re-export EnumPacker for convenience --- crates/antelope/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/antelope/src/lib.rs b/crates/antelope/src/lib.rs index 9ff665b..77ea5c1 100644 --- a/crates/antelope/src/lib.rs +++ b/crates/antelope/src/lib.rs @@ -5,4 +5,4 @@ pub mod crypto; pub mod serializer; pub mod util; -pub use antelope_client_macros::StructPacker; +pub use antelope_client_macros::{StructPacker, EnumPacker}; From b166fc5faaaf348b0cd6a7f99f265d7bdaa8197c Mon Sep 17 00:00:00 2001 From: Jesse Schulman Date: Tue, 11 Jun 2024 16:35:07 -0700 Subject: [PATCH 2/2] rustfmt --- crates/antelope/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/antelope/src/lib.rs b/crates/antelope/src/lib.rs index 77ea5c1..3743bc8 100644 --- a/crates/antelope/src/lib.rs +++ b/crates/antelope/src/lib.rs @@ -5,4 +5,4 @@ pub mod crypto; pub mod serializer; pub mod util; -pub use antelope_client_macros::{StructPacker, EnumPacker}; +pub use antelope_client_macros::{EnumPacker, StructPacker};