mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-13 03:05:32 +00:00
8f587b7803
* Use CID values for tetraplets and `canon` vectors. * Rename `cid_store` to `value_store` It is consistent with the new `tetraplet_store` and `canon_store` fields. * Make canon data more typeful The `CanonResult` doesn't take a JSON value anymore that is further deserialized elsewhere, but is a struct that has all data deserialized. * Typeful `CID` type The `CID` type has a phantom type paramter defining its value's type. * Group cid stores and trackers Group cid stores into `CidInfo` struct, and trackers into `ExecutionCidState` struct.
37 lines
932 B
TOML
37 lines
932 B
TOML
[package]
|
|
name = "air-test-utils"
|
|
version = "0.4.0"
|
|
description = "Test utils for the AIR interpreter"
|
|
authors = ["Fluence Labs"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
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.2.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"
|
|
|
|
fstrings = "0.2.3"
|
|
object-pool = "0.5.4"
|
|
once_cell = "1.17.0"
|
|
semver = "1.0.16"
|
|
serde_json = "1.0.91"
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
maplit = "1.0.2"
|
|
|
|
[features]
|
|
test_with_native_code = []
|