diff --git a/Cargo.lock b/Cargo.lock index 59a933d..23f1fda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1871,7 +1871,7 @@ dependencies = [ [[package]] name = "tiny-encrypt" -version = "1.8.2" +version = "1.8.3" dependencies = [ "aes-gcm-stream", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index bb2febb..1c9fcee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiny-encrypt" -version = "1.8.2" +version = "1.8.3" edition = "2021" license = "MIT" description = "A simple and tiny file encrypt tool" diff --git a/src/lib.rs b/src/lib.rs index 6b64e5a..9fbdfd5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -34,6 +34,7 @@ pub use cmd_initpiv::CmdInitPiv; pub use cmd_initpiv::init_piv; pub use cmd_version::CmdVersion; pub use cmd_version::version; +pub use config::TinyEncryptConfig; mod consts; mod util;