toolcraft 0.1.3

A modular Rust toolkit
Documentation
1
2
3
4
5
6
7
8
9
use toolcraft::{self, error::Result, jinjia2::docx_to_json};

#[tokio::main]
async fn main() -> Result<()> {
    let json = docx_to_json("data/tt.docx")?;
    println!("Generated JSON: {}", json);

    Ok(())
}