Export Decoder and Encoder structs
This commit is contained in:
parent
38921eeb21
commit
bb47d46586
2 changed files with 4 additions and 2 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1,7 +1,7 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "b32_rs"
|
||||
name = "b32"
|
||||
version = "0.1.0"
|
||||
|
|
|
@ -3,6 +3,8 @@ pub mod decode;
|
|||
pub mod encode;
|
||||
pub mod error;
|
||||
|
||||
pub use {decode::Decoder, encode::Encoder, error::Error as B64Error};
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
pub struct B32Alphabet {
|
||||
items: [u8; 32],
|
||||
|
|
Loading…
Add table
Reference in a new issue