fix: test from cli

This commit is contained in:
Jixun Wu
2021-12-29 00:22:31 +00:00
parent 76ae128d68
commit 672091e129
4 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
[package] [package]
name = "tc_tea" name = "tc_tea"
version = "0.1.2" version = "0.1.3"
authors = ["Jixun Wu <jixun.moe@gmail.com>"] authors = ["Jixun Wu <jixun.moe@gmail.com>"]
edition = "2021" edition = "2021"

View File

@@ -16,7 +16,7 @@ Code implemented according to the spec described in
Add the following to `[dependencies]` section in your `Cargo.toml` file: Add the following to `[dependencies]` section in your `Cargo.toml` file:
```toml ```toml
tc_tea = "0.1.2" tc_tea = "0.1.3"
``` ```
## Troubleshooting ## Troubleshooting

View File

@@ -3,7 +3,7 @@
//! Notably, it uses a different round number and uses a "tweaked" CBC mode. //! Notably, it uses a different round number and uses a "tweaked" CBC mode.
mod stream_ext; mod stream_ext;
mod tc_tea; mod tc_tea_public;
mod tc_tea_internal; mod tc_tea_internal;
pub use tc_tea::*; pub use tc_tea_public::*;