crisp 0.1.2

A small, expressive Lisp-inspired programming language.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "crisp"
version = "0.1.2"
authors = ["Glenn Wallace <glennw-coding@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, expressive Lisp-inspired programming language."
readme = "README.md"
keywords = [
    "compiler",
    "interpreter",
    "lisp",
    "programming-language",
]
categories = [
    "compilers",
    "parser-implementations",
]
license = "MIT"
repository = "https://codeberg.org/Stack-Syndicate/crisp"

[lib]
name = "crisp"
path = "src/lib.rs"

[[bin]]
name = "crisp"
path = "src/main.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[dependencies.anyhow]
version = "1.0.100"

[dependencies.clap]
version = "4.6.1"
features = ["derive"]

[dependencies.colored]
version = "3.1.1"

[dependencies.env_logger]
version = "0.11.10"
features = ["color"]

[dependencies.log]
version = "0.4.29"

[dependencies.pest]
version = "2.8.4"

[dependencies.pest_derive]
version = "2.8.4"

[dev-dependencies.proptest]
version = "1.4.0"

[dev-dependencies.proptest-derive]
version = "0.4.0"