crisp 0.1.0

The main crate for the lisp-like programming language Crisp which (one day!) integrates seamlessly with C/C++ and Rust libraries.
Documentation
[package]
name = "crisp"
authors = ["Glenn Wallace glennw-coding@proton.me"]
description = "The main crate for the lisp-like programming language Crisp which (one day!) integrates seamlessly with C/C++ and Rust libraries."
version = "0.1.0"
edition = "2024"
keywords = ["lisp", "repl", "programming-language", "crisp"]
categories = ["parser-implementations", "compilers"]
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/Stack-Syndicate/crisp"

[dependencies]
pest = "2.8.1"
pest_derive = "2.8.1"
proc-macro2 = "1.0.101"
quote = "1.0.40"
syn = { version = "2.0.106", features = ["full"] }
crisp-macro = { version = "0.1.0", path = "crisp-macro" }
crisp-runtime = { version = "0.1.0", path = "crisp-runtime" }
uuid = "1.18.0"
num-iter = "0.1.45"

[workspace]
members = ["crisp-macro", "crisp-runtime"]