rustless 0.10.0

Rustless is a REST-like API micro-framework for Rust.
Documentation
1
2
3
4
5
6
pub use serde_json::{Value as JsonValue, to_value, to_string};
pub use serde_json::value::{ToJson};
use std::collections::{BTreeMap};

pub type Object = BTreeMap<String, JsonValue>;
pub type Array = Vec<JsonValue>;