aquavm/air/Cargo.toml

76 lines
2.1 KiB
TOML
Raw Normal View History

2020-10-30 20:29:05 +03:00
[package]
name = "air"
version = "0.30.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
2020-10-30 20:29:05 +03:00
authors = ["Fluence Labs"]
edition = "2018"
2021-10-11 12:17:30 +03:00
repository = "https://github.com/fluencelabs/aquavm"
publish = false
2021-10-05 20:08:10 +03:00
keywords = ["fluence", "air", "webassembly", "programming-language"]
categories = ["wasm"]
2020-10-30 20:29:05 +03:00
[lib]
name = "air"
2020-10-30 20:29:05 +03:00
path = "src/lib.rs"
2021-05-16 22:52:22 +03:00
doctest = false
2020-10-30 20:29:05 +03:00
[dependencies]
air-parser = { path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { path = "../crates/air-lib/execution-info-collector" }
air-interpreter-data = { path = "../crates/air-lib/interpreter-data" }
air-interpreter-interface = { path = "../crates/air-lib/interpreter-interface", default-features = false }
air-log-targets = { path = "../crates/air-lib/log-targets" }
air-lambda-ast = { path = "../crates/air-lib/lambda/ast" }
air-lambda-parser = { path = "../crates/air-lib/lambda/parser" }
air-trace-handler = { path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.1.0", path = "../crates/air-lib/utils" }
polyplets = { path = "../crates/air-lib/polyplets" }
2020-10-30 20:29:05 +03:00
serde = { version = "1.0.144", features = [ "derive", "rc" ] }
serde_json = "1.0.85"
2020-10-30 20:29:05 +03:00
boolinator = "2.4.0"
2021-12-17 22:02:16 +03:00
concat-idents = "1.1.3"
maplit = "1.0.2"
non-empty-vec = "0.2.3"
log = "0.4.17"
2021-11-24 18:47:49 +03:00
fstrings = "0.2.3"
thiserror = "1.0.35"
strum = "0.24"
strum_macros = "0.24"
tracing = "0.1.36"
2020-10-30 20:29:05 +03:00
[dev_dependencies]
air-test-utils = { path = "../crates/air-lib/test-utils" }
air-testing-framework = { path = "../crates/testing-framework" }
fluence-app-service = "0.22.1"
marine-rs-sdk = { version = "0.7.0", features = ["logger"] }
2020-10-30 20:29:05 +03:00
# the feature just silence a warning in the criterion 0.3.x.
criterion = { version = "0.3.3", features = ["html_reports"] }
csv = "1.1.5"
2020-11-01 17:20:25 +03:00
once_cell = "1.4.1"
2020-10-30 20:29:05 +03:00
env_logger = "0.7.1"
pretty_assertions = "0.6.1"
serde_json = "1.0.61"
2020-10-30 20:29:05 +03:00
2020-11-01 17:20:25 +03:00
[[bench]]
name = "call_benchmark"
harness = false
[[bench]]
name = "chat_benchmark"
harness = false
[[bench]]
name = "create_service_benchmark"
harness = false
[[bench]]
name = "data_big_benchmark"
harness = false
[[bench]]
name = "data_long_benchmark"
harness = false