aquavm/air-interpreter/Cargo.toml
Mike Voronov c85b2e2fbf
feat(execution-engine): change behaviour of fold over streams (#340)
feat(execution-engine): change behaviour of fold over streams

Change behaviour of fold over streams to make it more similar to pi-calculus channels/names (for more info see #333).

Closes #333.

BREAKING CHANGE:

The new stream behaviour is not compatible with old one, such as
```
(fold $stream iterator
   (seq
       (call ...)
       (next iterator)))
```
will never end after this change (for more info again see #333).
2022-09-28 22:03:54 +03:00

40 lines
1.1 KiB
TOML

[package]
name = "air-interpreter"
version = "0.30.0"
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 = { path = "../air" }
air-interpreter-interface = { path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { 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.144", features = [ "derive", "rc" ] }
serde_json = "1.0.85"
tracing = "0.1.36"
# exclude tracing-log feature that interferes with the log crate:
tracing-subscriber = { version = "0.3.15", 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 = []