[package]
edition = "2021"
rust-version = "1.70"
name = "lispexp"
version = "0.6.0"
authors = ["USAMI Kenta <tadsan@zonu.me>"]
build = false
exclude = [
"/tests/corpus",
"/AGENTS.md",
"/docs/agents",
"/docs/cccc",
"/.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"
[[example]]
name = "dialect_by_extension"
path = "examples/dialect_by_extension.rs"
[[example]]
name = "find_definitions"
path = "examples/find_definitions.rs"
[[example]]
name = "harvest_project_macros"
path = "examples/harvest_project_macros.rs"
[[example]]
name = "lex_tokens"
path = "examples/lex_tokens.rs"
[[example]]
name = "walk_code_nodes"
path = "examples/walk_code_nodes.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 = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "edn"
path = "tests/edn.rs"
[[test]]
name = "emacslisp"
path = "tests/emacslisp.rs"
[[test]]
name = "error_kind"
path = "tests/error_kind.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 = "options"
path = "tests/options.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"
[[test]]
name = "registries"
path = "tests/registries.rs"
[[test]]
name = "scheme_superset"
path = "tests/scheme_superset.rs"
[[test]]
name = "span"
path = "tests/span.rs"
[dependencies]