1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A Clojure reader in Rust.
//!
//! This crate tries to match the behavior of Clojure's `tools.reader` as much as possible. EDN is
//! almost complete.
#![no_std]

extern crate alloc;
#[cfg(feature = "std")]
extern crate std;

pub mod edn;
pub mod error;

mod parse;