outrun/outrun-compiler/Cargo.toml

23 lines
605 B
TOML

[package]
authors = ["James Harton <james@harton.nz>"]
description = "🌅 A compiler for the most retro-futuristic toy language in the world."
edition = "2021"
license-file = "../LICENSE.md"
name = "outrun-compiler"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
heck = "0.4"
lazy_static = "1.4"
miette = {version = "5.9", features = ["fancy"]}
outrun-common = {path = "../outrun-common"}
pest = "2.6"
pest_derive = "2.6"
rusttyc = "0.5"
textwrap = "0.16.0"
thiserror = "1.0"
[dev-dependencies]
assert_matches = "1.5"