[package]
edition = "2024"
rust-version = "1.85"
name = "crisp-parser"
version = "1.7.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crisp parser — tokens to AST (spec Appendix A)"
homepage = "https://crisp-lang.org/"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/jose-compu/crisp"
resolver = "2"
[lib]
name = "crisp_parser"
path = "src/lib.rs"
[[test]]
name = "closures_parse"
path = "tests/closures_parse.rs"
[[test]]
name = "enum_match"
path = "tests/enum_match.rs"
[[test]]
name = "fuzz_smoke"
path = "tests/fuzz_smoke.rs"
[[test]]
name = "generics_parse"
path = "tests/generics_parse.rs"
[[test]]
name = "interpolation_span"
path = "tests/interpolation_span.rs"
[[test]]
name = "loops_parse"
path = "tests/loops_parse.rs"
[[test]]
name = "match_struct_hint"
path = "tests/match_struct_hint.rs"
[[test]]
name = "parse_abnormal"
path = "tests/parse_abnormal.rs"
[[test]]
name = "parse_catch"
path = "tests/parse_catch.rs"
[[test]]
name = "parse_examples"
path = "tests/parse_examples.rs"
[[test]]
name = "parse_hello"
path = "tests/parse_hello.rs"
[[test]]
name = "parse_server"
path = "tests/parse_server.rs"
[[test]]
name = "parse_use_rust"
path = "tests/parse_use_rust.rs"
[[test]]
name = "shape_parse"
path = "tests/shape_parse.rs"
[dependencies.crisp-ast]
version = "1.7.3"
[dependencies.crisp-lexer]
version = "1.7.3"
[dependencies.thiserror]
version = "2"
[dev-dependencies.insta]
version = "1"