aquavm/air-interpreter/Cargo.toml
renovate[bot] 91189a1d9d
chore(deps): update rust crate serde_json to 1.0.93 (#462)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-13 12:17:52 +03:00

40 lines
1.2 KiB
TOML

[package]
name = "air-interpreter"
version = "0.35.4"
description = "Crate-wrapper for air"
authors = ["Fluence Labs"]
edition = "2018"
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]
air = { version = "0.35.1", path = "../air" }
air-interpreter-interface = { version = "0.12.1", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
marine-rs-sdk = { version = "0.7.1", features = ["logger"] }
wasm-bindgen = "=0.2.82"
log = "0.4.17"
serde = { version = "1.0.152", features = [ "derive", "rc" ] }
serde_json = "1.0.93"
tracing = "0.1.37"
# exclude tracing-log feature that interferes with the log crate:
tracing-subscriber = { version = "0.3.16", 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 = []