-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
37 lines (34 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.38.1"
authors = ["Fluence DAO", "Cloudless Labs"]
edition = "2021"
license = "AGPL-3.0-only"
documentation = "https://docs.rs/avm-server"
repository = "https://github.com/fluencelabs/aquavm/tree/master/avm/server"
keywords = ["fluence", "air", "webassembly", "programming-language"]
categories = ["wasm"]
[lib]
name = "avm_server"
path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.19.0", path = "../../crates/air-lib/interpreter-interface" }
air-interpreter-sede = { version = "0.1.0", path = "../../crates/air-lib/interpreter-sede" }
air-utils = { version = "0.3.0", path = "../../crates/air-lib/utils" }
avm-data-store = { version = "0.7.9", path = "../../crates/data-store" }
marine-runtime = "0.37.0"
marine-wasmtime-backend = "0.7.0"
marine-wasm-backend-traits = "0.7.0"
polyplets = { version = "0.7.0", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.32.1", path = "../../avm/interface" }
eyre = "0.6.11"
thiserror = "1.0.50"
maplit = "1.0.2"
serde_json = "1.0.108"
serde = "1.0.190"
log = "0.4.20"
parking_lot = "0.12.1"
tracing = "0.1.40"
fluence-keypair = { version = "0.10.4", default-features = false }
tokio = { version = "1", features = ["rt", "macros"] }