marine/aquamarine-vm/Cargo.toml

26 lines
509 B
TOML
Raw Normal View History

2020-10-01 09:19:38 +00:00
[package]
name = "aquamarine-vm"
2020-10-01 09:57:29 +00:00
description = "Fluence Aquamarine VM"
2021-02-28 16:31:53 +00:00
version = "0.5.2"
2020-10-01 09:19:38 +00:00
authors = ["Fluence Labs"]
edition = "2018"
2020-10-01 09:57:29 +00:00
license = "Apache-2.0"
2020-10-01 09:19:38 +00:00
[lib]
name = "aquamarine_vm"
path = "src/lib.rs"
[dependencies]
2021-02-28 16:31:53 +00:00
fluence-faas = { path = "../fluence-faas", version = "0.5.2" }
aqua-interpreter-interface = "0.3.1"
2020-10-16 12:26:09 +00:00
maplit = "1.0.2"
serde_json = "1.0.60"
2021-01-12 09:14:33 +00:00
serde = "=1.0.118"
2021-02-28 16:31:53 +00:00
log = "0.4.14"
parking_lot = "0.11.1"
[features]
# enable raw AquamarineVM API intended for testing
2020-10-29 20:11:11 +00:00
raw-aquamarine-vm-api = []