aquavm/crates/air-lib/test-utils/Cargo.toml

36 lines
877 B
TOML
Raw Normal View History

[package]
name = "air-test-utils"
version = "0.4.0"
2021-10-05 17:08:10 +00:00
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
2020-12-27 21:12:11 +00:00
license = "Apache-2.0"
publish = false
2021-10-05 17:08:10 +00:00
keywords = ["fluence", "air", "webassembly", "security", "authorization"]
categories = ["wasm"]
[lib]
name = "air_test_utils"
path = "src/lib.rs"
[dependencies]
air = { path = "../../../air" }
air-interpreter-cid = { version = "0.1.0", path = "../interpreter-cid" }
air-interpreter-data = { path = "../interpreter-data" }
air-interpreter-interface = { path = "../interpreter-interface" }
avm-interface = { path = "../../../avm/interface" }
avm-server = { path = "../../../avm/server" }
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"
object-pool = "0.5.4"
once_cell = "1.16.0"
semver = "1.0.16"
serde_json = "1.0.91"
[dev-dependencies]
maplit = "1.0.2"
[features]
test_with_native_code = []