mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 16:48:58 +00:00
c83d5e1e59
* fix: clippy error * style: workspace lints * test: ignore failures
12 lines
250 B
Rust
12 lines
250 B
Rust
#![deny(clippy::unwrap_used)]
|
|
|
|
mod encdec;
|
|
mod error;
|
|
mod jwt;
|
|
|
|
pub use encdec::decrypt::decrypt_data;
|
|
pub use encdec::encrypt::encrypt_data;
|
|
pub use error::Error;
|
|
pub use jwt::decode::decode as jwt_decode;
|
|
pub use jwt::encode::encode as jwt_encode;
|