grift 1.5.0

A simple minimalistic Lisp built on the grift_arena allocator
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 = "grift"
version = "1.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple minimalistic Lisp built on the grift_arena allocator"
readme = false
license = "MIT OR Apache-2.0"
resolver = "2"

[features]
repl = ["dep:rustyline"]

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

[[bin]]
name = "grift"
path = "src/main.rs"
required-features = ["repl"]

[[example]]
name = "fib_bench"
path = "examples/fib_bench.rs"

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

[dependencies.grift_arena]
version = "1.5.0"

[dependencies.rustyline]
version = "17.0.2"
optional = true