outrun/outrun-parser/Cargo.toml

17 lines
467 B
TOML
Raw Normal View History

2022-08-09 12:39:52 +12:00
[package]
authors = ["James Harton <james@harton.nz>"]
2023-06-09 18:03:52 +12:00
description = "🌅 A compiler for the most retro-futuristic toy language in the world."
2022-08-09 12:39:52 +12:00
edition = "2021"
license-file = "../LICENSE.md"
2023-06-09 18:03:52 +12:00
name = "outrun-parser"
2022-08-09 12:39:52 +12:00
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-06-09 18:03:52 +12:00
lazy_static = "1.4"
miette = {version = "7.0", features = ["fancy"]}
pest = "2.7"
pest_derive = "2.7"
2023-06-09 18:03:52 +12:00
thiserror = "1.0"