Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sigmasoldi3r/json-saturnus


https://github.com/sigmasoldi3r/json-saturnus

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# JSON Saturnus

A simple library written in Saturnus for parsing and serializing JSON data.

Just add this line to your `[dependencies]` section:
```toml
json = { git = "https://github.com/sigmasoldi3r/json-saturnus" }
```

Example:
```rs
use json;

let object = { example: "Object", a: [1, 2, 3] };

let str = json.stringify(object, 2);
print(str);

let o = json.parse(str);
print("Example:", o.example);
```