aquavm/crates/data-store/Cargo.toml

24 lines
652 B
TOML
Raw Normal View History

[package]
name = "avm-data-store"
2024-02-22 13:05:33 +02:00
version = "0.7.9"
2021-10-05 20:08:10 +03:00
description = "Definition of the AVM DataStore trait"
authors = ["Fluence Labs"]
edition = "2021"
license = "Apache-2.0"
2021-10-05 20:08:10 +03:00
documentation = "https://docs.rs/avm-data-store"
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/data-store"
keywords = ["fluence", "air", "webassembly", "programming-language"]
categories = ["wasm"]
[lib]
name = "avm_data_store"
path = "src/lib.rs"
[dependencies]
2024-02-22 13:05:33 +02:00
avm-interface = { version = "0.32.1", path = "../../avm/interface"}
serde = { version = "1.0.190", features = ["derive"] }
serde_bytes = "0.11.9"
[dev-dependencies]
serde_json = "1.0.108"