2022-09-01 14:12:55 +03:00
|
|
|
[package]
|
|
|
|
name = "air-testing-framework"
|
2023-12-12 19:15:36 +02:00
|
|
|
version = "0.8.0"
|
2022-09-01 14:12:55 +03:00
|
|
|
description = "AquaVM testing framework"
|
|
|
|
authors = ["Fluence Labs"]
|
2023-12-18 18:48:46 +03:00
|
|
|
edition = "2021"
|
2022-09-01 14:12:55 +03:00
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/test-framework"
|
2023-03-15 21:28:10 +07:00
|
|
|
documentation = "https://docs.rs/air-testing-framework"
|
2022-09-01 14:12:55 +03:00
|
|
|
keywords = ["fluence", "air", "test"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "air_test_framework"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-12 19:15:36 +02:00
|
|
|
air-test-utils = { version = "0.13.0", path = "../air-lib/test-utils" }
|
|
|
|
aquavm-air-parser = { version = "0.11.0", path = "../air-lib/air-parser" }
|
2022-09-01 14:12:55 +03:00
|
|
|
|
2022-10-15 21:08:46 +03:00
|
|
|
itertools = "0.10.5"
|
2023-11-02 18:43:35 +04:00
|
|
|
fluence-keypair = "0.10.1"
|
2022-09-07 12:10:07 +03:00
|
|
|
strum = { version="0.24.1", features=["derive"] }
|
2023-01-19 17:33:00 +07:00
|
|
|
nom = "7.1.3"
|
2023-02-07 01:38:44 +07:00
|
|
|
nom_locate = "4.1.0"
|
2023-11-03 00:15:56 +07:00
|
|
|
serde_json = "1.0.108"
|
2023-10-23 12:11:13 +03:00
|
|
|
regex = "1.10.2"
|
2023-12-12 19:15:36 +02:00
|
|
|
air-interpreter-signatures = { version = "0.1.5", path = "../air-lib/interpreter-signatures" }
|
2022-09-01 14:12:55 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
maplit = "1.0.2"
|
2022-10-14 12:40:12 +03:00
|
|
|
pretty_assertions = "1.3.0"
|