1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00
bobbylisp/bin/Cargo.toml

17 lines
325 B
TOML
Raw Normal View History

2023-04-13 23:50:07 -05:00
[package]
name = "bin"
version = "0.1.0"
edition = "2021"
[dependencies]
ariadne = "0.2.0"
chumsky = "1.0.0-alpha.3"
2023-04-23 05:13:06 -05:00
clap = { version = "4.2.4", features = ["derive"] }
2023-04-13 23:50:07 -05:00
syntax = { path = "../syntax" }
typing = { path = "../typing" }
2023-05-16 15:00:38 -05:00
ir = { path = "../ir" }
2023-06-16 00:13:02 -05:00
com = { path = "../com" }
2023-04-25 12:50:40 -05:00
[[bin]]
name = "hc"
path = "src/main.rs"