15 lines
333 B
TOML
15 lines
333 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "interpreter"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
compiler = { path = "../compiler" }
|
|
anyhow = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
clap = { workspace = true }
|
|
inquire = "0.7.5"
|
|
integer-encoding = { workspace = true }
|
|
itertools = { workspace = true }
|
|
thiserror = { workspace = true }
|