2020-10-08 09:43:23 +00:00
|
|
|
[package]
|
2021-05-10 11:25:34 +00:00
|
|
|
name = "air-test-utils"
|
2022-11-25 07:59:09 +00:00
|
|
|
version = "0.4.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" }
|
2023-01-09 06:22:57 +00:00
|
|
|
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
|
2022-12-26 08:45:14 +00:00
|
|
|
air-interpreter-data = { path = "../interpreter-data" }
|
2021-10-05 13:55:04 +00:00
|
|
|
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-12-31 13:49:27 +00:00
|
|
|
once_cell = "1.17.0"
|
2022-12-26 22:20:34 +00:00
|
|
|
semver = "1.0.16"
|
2022-12-26 21:24:38 +00:00
|
|
|
serde_json = "1.0.91"
|
2023-01-15 20:13:05 +00:00
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
2022-06-10 05:28:40 +00:00
|
|
|
|
2022-11-25 07:59:09 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
maplit = "1.0.2"
|
|
|
|
|
2022-06-10 05:28:40 +00:00
|
|
|
[features]
|
|
|
|
test_with_native_code = []
|