Valery Antopol 63b4395ab5
feat!: move to async execution (#44)
* compiling async interpreter

* compiling

* fix after merge

* added lifetimes to allocatable

* move from async_trait to BoxFuture

* self-review fixes

* fix lifetime naming

* make simple instructions sync

* fmt
2024-01-25 15:43:07 +04:00

23 lines
489 B
TOML

[package]
name = "it-lilo"
version = "0.6.0"
authors = ["Fluence Labs"]
description = "Defines some helper utils for lifting/lowering IT"
edition = "2018"
license = "Apache-2.0"
[lib]
name = "it_lilo"
path = "src/lib.rs"
[dependencies]
fluence-it-types = { path = "../it-types", version = "0.4.1" }
it-memory-traits = { path = "../it-memory-traits", version = "0.4.0" }
anyhow = "1.0.75"
paste = "1.0.11"
thiserror = "1.0.38"
log = "0.4.17"
async-recursion = "1.0.5"
futures = "0.3.29"