aquavm/air-interpreter/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "air-interpreter"
version = "0.64.1"
2021-10-05 20:08:10 +03:00
description = "Crate-wrapper for air"
2024-06-26 12:34:36 +03:00
authors = ["Fluence DAO", "Cloudless Labs"]
edition = "2021"
publish = false
2021-10-05 20:08:10 +03:00
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"
2021-05-13 12:00:56 +03:00
path = "src/marine.rs"
[dependencies]
aquavm-air = { version = "0.64.1", path = "../air" }
2024-02-22 13:05:33 +02:00
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" ] }
2020-10-30 20:29:05 +03:00
[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"]