2020-10-08 09:43:23 +00:00
|
|
|
[package]
|
2021-05-10 11:25:34 +00:00
|
|
|
name = "air-test-utils"
|
2022-07-27 13:40:27 +00:00
|
|
|
version = "0.3.0"
|
2021-10-05 17:08:10 +00:00
|
|
|
description = "Test utils for the AIR interpreter"
|
2020-10-08 09:43:23 +00:00
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
2020-12-27 21:12:11 +00:00
|
|
|
license = "Apache-2.0"
|
2021-05-19 09:43:49 +00:00
|
|
|
publish = false
|
2021-10-05 17:08:10 +00:00
|
|
|
keywords = ["fluence", "air", "webassembly", "security", "authorization"]
|
|
|
|
categories = ["wasm"]
|
2020-10-08 09:43:23 +00:00
|
|
|
|
|
|
|
[lib]
|
2021-05-10 11:25:34 +00:00
|
|
|
name = "air_test_utils"
|
2020-10-08 09:43:23 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-05 13:55:04 +00:00
|
|
|
air = { path = "../../../air" }
|
|
|
|
air-interpreter-interface = { path = "../interpreter-interface" }
|
2022-08-19 09:29:21 +00:00
|
|
|
avm-interface = { path = "../../../avm/interface" }
|
2021-10-05 13:55:04 +00:00
|
|
|
avm-server = { path = "../../../avm/server" }
|
2022-09-09 10:36:19 +00:00
|
|
|
marine-rs-sdk = "0.7.1"
|
2021-05-16 19:52:22 +00:00
|
|
|
|
2022-03-10 13:06:43 +00:00
|
|
|
fstrings = "0.2.3"
|
2022-05-12 12:29:08 +00:00
|
|
|
object-pool = "0.5.4"
|
2022-11-24 09:54:40 +00:00
|
|
|
once_cell = "1.16.0"
|
2022-10-13 09:50:32 +00:00
|
|
|
semver = "1.0.14"
|
2022-11-24 09:54:40 +00:00
|
|
|
serde_json = "1.0.89"
|
2022-06-10 05:28:40 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
test_with_native_code = []
|