We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0896fb0 commit 265f771Copy full SHA for 265f771
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "bin-encode-decode"
3
-version = "1.1.36"
+version = "1.1.38"
4
readme = "README.md"
5
edition = "2024"
6
authors = ["root@ltpp.vip"]
src/lib.rs
@@ -3,9 +3,9 @@
//! A high-performance binary encode and decode library
//! that supports customizable character sets beyond Base64.
-pub(crate) mod common;
7
-pub(crate) mod decode;
8
-pub(crate) mod encode;
+mod common;
+mod decode;
+mod encode;
9
10
pub use {common::*, decode::*, encode::*};
11
0 commit comments