[package]
edition = "2024"
name = "only-syntax"
version = "0.0.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Syntax parsing and CST construction for the only task language."
documentation = "https://github.com/KercyDing/only"
readme = false
license = "MIT"
repository = "https://github.com/KercyDing/only"
resolver = "2"
[lib]
name = "only_syntax"
path = "src/lib.rs"
[[test]]
name = "cst"
path = "tests/cst.rs"
[[test]]
name = "lex"
path = "tests/lex.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "recover"
path = "tests/recover.rs"
[dependencies.logos]
version = "0.16"
[dependencies.only-diagnostic]
version = "0.0.5"
[dependencies.rowan]
version = "0.16"
[dependencies.smol_str]
version = "0.3"
[dependencies.text-size]
version = "1.1"
[dependencies.winnow]
version = "1.0"