clojure_reader/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! 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;

#[cfg(feature = "derive")]
pub use de::from_str;
#[cfg(feature = "derive")]
pub use ser::to_string;

#[cfg(feature = "derive")]
pub mod de;
#[cfg(feature = "derive")]
pub mod ser;

mod parse;