mirror of
https://github.com/fluencelabs/aquavm
synced 2025-03-15 20:40:50 +00:00
* support call_parameters v2 * remove old comment * use released marine * fix test wasm * update sdk marine use lens * fix test module * WIP fixing the tests to use lens * WIP tetraplet field renaming test fixes * rename more lambda to lens * fix build * Fix gen-bench-data compilation * Update gen-bench-data Cargo.lock * Fix signature tests --------- Co-authored-by: drrtuy <roman@fluence.one> Co-authored-by: Ivan Boldyrev <ivan@fluence.one>
44 lines
1.4 KiB
TOML
44 lines
1.4 KiB
TOML
[package]
|
|
name = "air-test-utils"
|
|
version = "0.16.0"
|
|
description = "Test utils for the AIR interpreter"
|
|
authors = ["Fluence Labs"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/fluencelabs/aquavm"
|
|
documentation = "https://docs.rs/air-test-utils"
|
|
keywords = ["fluence", "air", "webassembly", "security", "authorization"]
|
|
categories = ["wasm"]
|
|
|
|
[lib]
|
|
name = "air_test_utils"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
aquavm-air = { version = "0.60.0", path = "../../../air" }
|
|
air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid" }
|
|
air-interpreter-data = { version = "0.17.1", path = "../interpreter-data" }
|
|
air-interpreter-interface = { version = "0.18.0", path = "../interpreter-interface" }
|
|
air-interpreter-sede = { version = "0.1.0", path = "../interpreter-sede" }
|
|
air-interpreter-signatures = { version = "0.1.7", path = "../interpreter-signatures" }
|
|
avm-interface = { version = "0.32.0", path = "../../../avm/interface" }
|
|
avm-server = { version = "0.36.0", path = "../../../avm/server" }
|
|
marine-rs-sdk = "0.14.0"
|
|
|
|
object-pool = "0.5.4"
|
|
once_cell = "1.17.1"
|
|
semver = "1.0.17"
|
|
serde_json = "1.0.108"
|
|
serde = { version = "1.0.190", features = ["derive"] }
|
|
fluence-keypair = "0.10.4"
|
|
ed25519-dalek = "2.1.0"
|
|
rand_chacha = "0.3.1"
|
|
sha2 = "0.10.6"
|
|
air-interpreter-value = { version = "0.1.0", path = "../interpreter-value" }
|
|
|
|
[dev-dependencies]
|
|
maplit = "1.0.2"
|
|
|
|
[features]
|
|
test_with_native_code = []
|