outrun/outrun-compiler/Cargo.toml

22 lines
576 B
TOML
Raw Normal View History

2022-08-04 17:38:00 +12:00
[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]
lazy_static = "1.4"
2022-08-22 11:30:39 +12:00
miette = {version = "5.3", features = ["fancy"]}
outrun-common = {path = "../outrun-common"}
2022-08-19 16:41:17 +12:00
pest = "2.2"
pest_derive = "2.2"
2022-08-22 11:30:39 +12:00
textwrap = "0.15.0"
thiserror = "1.0"
[dev-dependencies]
assert_matches = "1.5"