mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-13 03:05:32 +00:00
d3bda16e71
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
32 lines
811 B
TOML
32 lines
811 B
TOML
[package]
|
|
name = "air-testing-framework"
|
|
version = "0.1.0"
|
|
description = "AquaVM testing framework"
|
|
authors = ["Fluence Labs"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/test-framework"
|
|
publish = false
|
|
keywords = ["fluence", "air", "test"]
|
|
|
|
[lib]
|
|
name = "air_test_framework"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
air-test-utils = { path = "../air-lib/test-utils" }
|
|
air-parser = { path = "../air-lib/air-parser" }
|
|
|
|
itertools = "0.10.5"
|
|
strum = { version="0.24.1", features=["derive"] }
|
|
nom = "7.1.1"
|
|
nom_locate = "4.0.0"
|
|
serde_json = "1.0.89"
|
|
|
|
[dev-dependencies]
|
|
maplit = "1.0.2"
|
|
pretty_assertions = "1.3.0"
|
|
|
|
# We do not want to depend on wasm binary path
|
|
air-test-utils = { path = "../air-lib/test-utils", features = ["test_with_native_code"] }
|