text-to-json 0.1.3

Convert text to json in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate text_to_json;

use text_to_json::read;

fn main() {
  // Example: to read::to_json(file.txt).
  match read::to_json(String::from("example.txt")) {
    Ok(content) => println!("{:?}", content),
    Err(_) => panic!("Error"),
  }
}