mitoo 0.3.0

mitoo is a Rust toolkit library that encapsulates methods such as configuration reading, file operations, encryption and decryption, transcoding, regular expressions, threading, collections, trees, sqlite, rabbitMQ, etc., and customizes or integrates various Util tool classes.
Documentation
1
2
3
4
5
6
7
8
9
10
use chrono::prelude::*;

#[test]
fn test_chrono() {
    let now_local = Local::now();
    let date = now_local.date_naive();
    let time = date.and_time(Local::now().time());
    println!("{:?}", time);
    
}