2 releases

0.1.1 Jul 30, 2024
0.1.0 Jun 18, 2024

#306 in Memory management

Download history 126/week @ 2024-06-15 11/week @ 2024-06-22 6/week @ 2024-07-06 164/week @ 2024-07-27 9/week @ 2024-08-03

95 downloads per month

Zlib license

26KB
647 lines

clojure-reader

Coverage Status

A crate to read Clojure.

EDN (Extensible Data Notation)

MSRV (minimal supported rust version)

Stable minus 2 versions. Once stable (1.0.0), the plan is to indefinitely maintain the MSRV.

Default Features

The following features are enabled by default. To disable use this crate without default features.

std

When using no_std, this crate relies on alloc. You must supply your own #[global_allocator].

floats

Pulls in the dependency ordered-float for Edn::Double. Without this feature, parsing floating-point numbers will result in an Err.


lib.rs:

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.

Dependencies

~45KB