[package]
edition = "2021"
rust-version = "1.70"
name = "lispexp"
version = "0.1.1"
authors = ["USAMI Kenta <tadsan@zonu.me>"]
build = false
exclude = [
"/tests/corpus",
"/AGENTS.md",
"/docs/agents",
"/.github",
"/.claude",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust reader (lexer + parser) for S-expression syntax across many Lisp dialects"
readme = "README.md"
keywords = [
"lisp",
"s-expression",
"parser",
"scheme",
"reader",
]
categories = ["parser-implementations"]
license = "Apache-2.0"
repository = "https://github.com/rigortype/lispexp"
[lib]
name = "lispexp"
path = "src/lib.rs"
[[test]]
name = "annotate"
path = "tests/annotate.rs"
[[test]]
name = "clojure"
path = "tests/clojure.rs"
[[test]]
name = "commonlisp"
path = "tests/commonlisp.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "emacslisp"
path = "tests/emacslisp.rs"
[[test]]
name = "fennel"
path = "tests/fennel.rs"
[[test]]
name = "guile"
path = "tests/guile.rs"
[[test]]
name = "islisp"
path = "tests/islisp.rs"
[[test]]
name = "janet_hy_autolisp"
path = "tests/janet_hy_autolisp.rs"
[[test]]
name = "lexer"
path = "tests/lexer.rs"
[[test]]
name = "lfe"
path = "tests/lfe.rs"
[[test]]
name = "phel"
path = "tests/phel.rs"
[[test]]
name = "racket"
path = "tests/racket.rs"
[[test]]
name = "reader"
path = "tests/reader.rs"
[[test]]
name = "recovery"
path = "tests/recovery.rs"
[dependencies]