[dependencies.pest]
version = "2.7"
[dependencies.pest_derive]
version = "2.7"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.walkdir]
version = "2.4"
[dev-dependencies.insta]
version = "1.34"
[dev-dependencies.pretty_assertions]
version = "1.4"
[[example]]
name = "parse_file"
path = "examples/parse_file.rs"
[lib]
name = "thalir_parser"
path = "src/lib.rs"
[package]
authors = ["Gianluca Brigandi <gbrigand@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compilers", "parsing"]
description = "Parser for ThalIR files"
documentation = "https://docs.rs/thalir"
edition = "2021"
homepage = "https://github.com/tameshi-dev/thalir"
keywords = ["solidity", "parser", "ir", "pest"]
license = "MPL-2.0"
name = "thalir-parser"
readme = false
repository = "https://github.com/tameshi-dev/thalir"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "cranelift_compat"
path = "tests/cranelift_compat.rs"
[[test]]
name = "llm_extensions"
path = "tests/llm_extensions.rs"
[[test]]
name = "parser_roundtrip"
path = "tests/parser_roundtrip.rs"
[[test]]
name = "thalir_ir"
path = "tests/thalir_ir.rs"
[[test]]
name = "validate_against_cli"
path = "tests/validate_against_cli.rs"