rustycpp 0.1.6

An attempt to implement the C++20 standard. This is mostly to have fun & learn rust
[package]
name = "rustycpp"
version = "0.1.6"
edition = "2021"
repository = "https://github.com/Destroyerrrocket/rustycpp"
readme = "README.md"
license = "GPL-3.0-or-later"
keywords = ["compiler", "C++"]
categories = ["compilers"]
description = "An attempt to implement the C++20 standard. This is mostly to have fun & learn rust"
# Unfortunatelly, right now lalrpop has some minnor issues that I needed to patch out manually
[build-dependencies]
lalrpop = {version = "0.19.8", path = "./lalrpop/lalrpop"}

[dependencies]
clap = { version = "3.2.0", features = ["derive"] }
lazy-regex = "2.3.0"
regex = "1.0.0"
lazy_static = "1.4.0"
logos = "0.12.0"
colored = "2.0.0"
lalrpop-util = {version = "0.19.8", path = "./lalrpop/lalrpop-util"}
log = "0.4.17"
env_logger = "0.9.1"
test-log = "0.2.10"
multiset = "0.0.5"
chrono = "0.4"
antlr-rust = {version = "0.3.0-beta"}
json = "0.12.4"
f128 = "0.2.9"
priority-queue = "1.2.3"