[package]
edition = "2021"
name = "lex-syntax"
version = "0.10.2"
authors = ["Alpibrupa <https://github.com/alpibrupa>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tokenizer + parser for the Lex programming language."
homepage = "https://github.com/alpibrusl/lex-lang"
readme = false
keywords = [
"lex",
"agent",
"effects",
"language",
]
categories = [
"compilers",
"development-tools",
]
license = "EUPL-1.2"
repository = "https://github.com/alpibrusl/lex-lang"
[lib]
name = "lex_syntax"
path = "src/lib.rs"
[[test]]
name = "comments_417"
path = "tests/comments_417.rs"
[[test]]
name = "depth_limit"
path = "tests/depth_limit.rs"
[[test]]
name = "loader_smoke"
path = "tests/loader_smoke.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[[test]]
name = "trailing_commas"
path = "tests/trailing_commas.rs"
[[test]]
name = "underscore_idents"
path = "tests/underscore_idents.rs"
[dependencies.flate2]
version = "1"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.logos]
version = "0.16"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1"
[dependencies.ureq]
version = "3.3"
features = [
"rustls",
"platform-verifier",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"