From 672091e12956b483564de4328f2d8155a6a87c5b Mon Sep 17 00:00:00 2001 From: Jixun Wu Date: Wed, 29 Dec 2021 00:22:31 +0000 Subject: [PATCH] fix: test from cli --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 4 ++-- src/{tc_tea.rs => tc_tea_public.rs} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename src/{tc_tea.rs => tc_tea_public.rs} (100%) diff --git a/Cargo.toml b/Cargo.toml index 0de761f..5542fa4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "tc_tea" -version = "0.1.2" +version = "0.1.3" authors = ["Jixun Wu "] edition = "2021" diff --git a/README.md b/README.md index efff433..ad18953 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Code implemented according to the spec described in Add the following to `[dependencies]` section in your `Cargo.toml` file: ```toml -tc_tea = "0.1.2" +tc_tea = "0.1.3" ``` ## Troubleshooting diff --git a/src/lib.rs b/src/lib.rs index 2739395..12ebe15 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ //! Notably, it uses a different round number and uses a "tweaked" CBC mode. mod stream_ext; -mod tc_tea; +mod tc_tea_public; mod tc_tea_internal; -pub use tc_tea::*; +pub use tc_tea_public::*; diff --git a/src/tc_tea.rs b/src/tc_tea_public.rs similarity index 100% rename from src/tc_tea.rs rename to src/tc_tea_public.rs