marine/aquamarine-vm/Cargo.toml

24 lines
527 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"
2020-12-22 13:09:47 +00:00
version = "0.1.5"
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]
2020-12-22 13:09:47 +00:00
fluence-faas = { path = "../fluence-faas", version = "0.1.17" }
stepper-interface = { git = "https://github.com/fluencelabs/aquamarine", branch = "master" }
2020-10-16 12:26:09 +00:00
maplit = "1.0.2"
2020-10-01 09:19:38 +00:00
serde_json = "1.0.57"
serde = "1.0.116"
[features]
# enable raw AquamarineVM API intended for testing
2020-10-29 20:11:11 +00:00
raw-aquamarine-vm-api = []