aw-server 0.8.0

A reimplementation of aw-server in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_use]
extern crate serde_json;

#[macro_use]
extern crate aw_server;

#[cfg(test)]
mod macros_tests {
    #[test]
    fn test_json_map() {
        json_map! {};
        json_map! {"a": json!(1)};
        json_map! {"a": json!(1), "b": json!(2)};
    }
}