clojure-reader

Crates.ioclojure-reader
lib.rsclojure-reader
version0.2.0
sourcesrc
created_at2024-06-18 13:39:40.485387
updated_at2024-11-03 21:04:28.078749
descriptionA Clojure reader
homepage
repositoryhttps://github.com/grinkers/clojure-reader
max_upload_size
id1275476
size71,123
Kevin Nakamura (Grinkers)

documentation

README

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.

Optional Features

The following features are not enabled by default. To enable them all, use with

 clojure-reader  = { features = ["full"] }

arbitrary-nums

Enables parsing of arbitrary length/precision Ints and Decimals. Relies on bigdecimal and num-bigint crates.

no_std

See the pico example for a minimalistic example of using this crate with the raspberry pi pico (rp2040)

Commit count: 20

cargo fmt