mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
17 lines
325 B
TOML
17 lines
325 B
TOML
[package]
|
|
name = "bin"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ariadne = "0.2.0"
|
|
chumsky = "1.0.0-alpha.3"
|
|
clap = { version = "4.2.4", features = ["derive"] }
|
|
syntax = { path = "../syntax" }
|
|
typing = { path = "../typing" }
|
|
ir = { path = "../ir" }
|
|
com = { path = "../com" }
|
|
|
|
[[bin]]
|
|
name = "hc"
|
|
path = "src/main.rs" |