kamft 0.0.14

Kamft common utility library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod axios {
    pub use reqwest::{self, Client as Axios};
}
pub mod log {
    pub use tracing::{debug, error, info, trace, warn};
}
pub mod base64 {
    pub use base64::{self, engine::general_purpose::STANDARD as BASE64, Engine};
}
pub mod md5 {
    pub use md5::{self, compute, Digest};
}
pub mod json {
    pub use serde::{Deserialize, Serialize};
    pub use serde_json::Value as JsonValue;
    pub use serde_json::*;
}