marine/aquamarine-vm/Cargo.toml

26 lines
565 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"
version = "0.1.6"
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]
fluence-faas = { path = "../fluence-faas", version = "0.1.18" }
stepper-interface = { git = "https://github.com/fluencelabs/aquamarine", branch = "master" }
2020-10-16 12:26:09 +00:00
maplit = "1.0.2"
serde_json = "1.0.60"
serde = "1.0.118"
log = "0.4.11"
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 = []