16 releases (6 breaking)

new 0.7.0 Jan 25, 2025
0.6.1 Jan 24, 2025
0.5.2 Dec 10, 2024
0.4.3 Dec 7, 2024
0.1.2 Nov 6, 2024

#378 in Configuration

Download history 322/week @ 2024-11-06 372/week @ 2024-11-13 109/week @ 2024-11-20 3/week @ 2024-11-27 660/week @ 2024-12-04 172/week @ 2024-12-11 2/week @ 2024-12-18 1/week @ 2025-01-08 328/week @ 2025-01-22

329 downloads per month

Custom license

28KB
646 lines

Żasą

License: OQL

It's just own json parser writen only in rust, with 0 external dependencies, as part of my "No dependncies" series of projects.

Usage

Easiest way to use this library is to use it with Normalize macro, however it's still pretty unstable, but it works for basic stuff. Currently it supports String, f64 and bool types

use zasa::parser::Parser;
use zasa::value::normalize;
use zasa::Normalize;

#[derive(Debug, Normalize)]
struct Example {
  name: String,
  size: f64,
  active: bool
}

fn main() {
    let json_string = "{\"name\": \"test\", \"size\": 45.0, \"active\": true}";
    let parsed = Parser::new(json_string.chars()).parse().unwrap();
    let normalized: Example = normalize(parsed).unwrap();
    dbg!(normalized);
}

it will result in

normalized = Example {
  name: "test",
  size: 45.0,
  active: true,
}

Dependencies