c4735119c4
The parser mostly works and has a decent test suite. It parses all the queries issued by the Tofino UAS, with some caveats. Known flaws: * No support for tagged elements, comments, discarded elements or "'". * Incomplete support for escaped characters in strings and the range of characters that are allowed in keywords and symbols. * Possible whitespace handling problems.
17 lines
338 B
TOML
17 lines
338 B
TOML
[package]
|
|
name = "edn"
|
|
version = "0.1.0"
|
|
authors = ["Joe Walker <jwalker@mozilla.com>"]
|
|
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/mozilla/mentat"
|
|
description = "EDN parser for Project Mentat"
|
|
build = "build.rs"
|
|
readme = "./README.md"
|
|
|
|
[dependencies]
|
|
num = "0.1.35"
|
|
ordered-float = "0.3.0"
|
|
|
|
[build-dependencies]
|
|
peg = "0.4"
|