edn-rs

[Experimental] Crate to parse and emit EDN

Usage

Cargo.toml toml [dependencies] edn-rs = "0.2.1"

Parse and EDN into a EdnNode: ```rust extern crate edn_rs;

use ednrs::parseedn;

fn main() { ... let edn = String::from("[1 2 [:3 \"4\"]]"); let value = parse_edn(edn); ... } ```

Current Features