Skip to content

Commit f35db2d

Browse files
committed
feat: v0.2.0
1 parent c5b2245 commit f35db2d

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bin-encode-decode"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
edition = "2024"
55
authors = ["ltpp-universe <root@ltpp.vip>"]
66
license = "MIT"

src/common/const.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub const CHARSET_LEN: usize = 64;

src/common/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#[cfg(test)]
22
mod cfg;
3+
4+
pub(crate) mod r#const;
35
pub(crate) mod error;
46
pub(crate) mod r#impl;
5-
pub(crate) mod r#static;
67
pub(crate) mod r#type;

src/common/static.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ pub use common::{
99
pub use decode::func::*;
1010
pub use encode::func::*;
1111

12-
pub(crate) use common::r#static::*;
12+
pub(crate) use common::r#const::*;
1313
pub(crate) use std::{collections::HashSet, fmt};

0 commit comments

Comments
 (0)