[package]
edition = "2024"
rust-version = "1.92.0"
name = "misty-parser"
version = "0.0.2"
authors = ["codebreeze <codebreeze@znth.systems>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser code required by the Misty Compiler"
homepage = "https://github.com/thecodebreeze/misty"
documentation = "https://github.com/thecodebreeze/misty/wiki"
readme = false
keywords = [
"networking",
"quic",
"idl",
"codegen",
]
categories = [
"compilers",
"command-line-utilities",
"network-programming",
"parser-implementations",
"web-programming",
]
license = "BSD-3-Clause"
repository = "https://github.com/thecodebreeze/misty"
[lib]
name = "misty_parser"
path = "src/lib.rs"
[dependencies.misty-ast]
version = "0.0.2"
[dependencies.pest]
version = "2.8.5"
[dependencies.pest_derive]
version = "2.8.5"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tracing]
version = "0.1.44"
features = [
"async-await",
"valuable",
]