moose/Cargo.toml
Devon Tingley 124218cfd8 Chapter 3
No idea if garbage collection is needed since it kinda mimics Rust's
lifetime system but /shrugs/ probably not what the monkey spec
recommends? idk, there aren't any pointers so I think it'd be fine (for
now, at least...)
2023-03-10 09:02:48 -05:00

13 lines
305 B
TOML

[package]
name = "moose"
version = "0.1.0"
authors =["Devon Tingley <dtingley@twilit.io>"]
description = "Oxidized interpretor for the monkey programming language"
edition = "2021"
[dependencies]
anyhow = "1.0.69"
clap = { version = "4.1.8", features = ["derive"] }
[dev-dependencies]
rstest = "0.16.0"