[package]
edition = "2021"
rust-version = "1.75"
name = "vihaco-parser"
version = "0.1.1"
authors = [
"Kai-Hsin Wu <khwu@quera.com>",
"Xiuzhe(Roger) Luo <me@rogerluo.dev>",
"Neelay Fruitwala <nfruitwala@quera.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Derive macro (#[derive(Parse)]) that generates chumsky parsers for vihaco syntax types."
readme = false
license = "MIT"
repository = "https://github.com/QuEraComputing/vihaco"
[lib]
name = "vihaco_parser"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "compile_errors"
path = "tests/compile_errors.rs"
[[test]]
name = "delegate"
path = "tests/delegate.rs"
[[test]]
name = "delimiters"
path = "tests/delimiters.rs"
[[test]]
name = "head"
path = "tests/head.rs"
[[test]]
name = "parse_with"
path = "tests/parse_with.rs"
[[test]]
name = "three_fields"
path = "tests/three_fields.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[dependencies.vihaco-parser-core]
version = "0.1.1"
[dev-dependencies.chumsky]
version = "0.10"
[dev-dependencies.trybuild]
version = "1"
[dev-dependencies.vihaco-parser-core]
version = "0.1.1"