[package] name = "arrow-vm" version = "0.0.1" edition = "2021" description = "VM for the Arrow programming language" license = "Apache-2.0" homepage = "https://github.com/wilsonzlin/arrow-lang" readme = "README.md" repository = "https://github.com/wilsonzlin/arrow-lang.git" authors = ["Wilson Lin "] [features] tokio = ["dep:tokio"] [dependencies] arrow-parser = { version = "0.0.1", path = "../arrow-parser" } arrowc = { version = "0.0.1", path = "../arrowc" } itertools = "0.10" ordered-float = "3.4" rustc-hash = "1.1" tokio = { version = "1", optional = true, features = ["rt", "time"] }