-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
43 lines (35 loc) · 1.35 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
38
39
40
41
42
43
[package]
name = "air-interpreter"
version = "0.64.1"
description = "Crate-wrapper for air"
authors = ["Fluence DAO", "Cloudless Labs"]
edition = "2021"
publish = false
keywords = ["fluence", "air", "webassembly", "programming-language"]
categories = ["wasm"]
[lib]
name = "air_interpreter_client"
crate-type = ["cdylib"]
path = "src/wasm_bindgen.rs"
[[bin]]
name = "air_interpreter_server"
path = "src/marine.rs"
[dependencies]
aquavm-air = { version = "0.64.1", path = "../air" }
air-interpreter-interface = { version = "0.19.0", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
marine-rs-sdk = {version = "0.14.0", features = ["logger"] }
wasm-bindgen = "=0.2.83"
log = "0.4.20"
serde = { version = "1.0.190", features = [ "derive", "rc" ] }
serde_json = "1.0.108"
tracing = "0.1.40"
# exclude tracing-log feature that interferes with the log crate:
tracing-subscriber = { version = "0.3.17", default-features = false, features = [ "env-filter", "json", "smallvec", "time", "fmt" ] }
[features]
# indicates that this library should be compiled for the marine target,
# otherwise it will be compiled for the wasm bindgen target
marine = []
gen_signatures = ["aquavm-air/gen_signatures"]
check_signatures = ["aquavm-air/check_signatures"]
default = ["check_signatures", "gen_signatures"]