hence/hencelisp/Cargo.toml

19 lines
384 B
TOML
Raw Normal View History

2022-07-17 18:24:49 +00:00
[package]
name = "hencelisp"
version = "0.1.0"
edition = "2021"
[lib]
name = "hencelisp"
path = "src/lib/lib.rs"
[[bin]]
name = "hencelisp"
path = "src/bin/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hence = { path = "../hence" }
clap = { version = "3.2.12", features = ["derive"] }
2022-07-17 20:07:59 +00:00
itertools = "0.10.3"