aquavm/crates/air-lib/interpreter-cid/Cargo.toml
Ivan Boldyrev 4ffad8d6b5
Fix interpreter-cid compilation (#411)
The serde crate was missing "derive" feature.
2022-12-26 19:35:49 +07:00

18 lines
702 B
TOML

[package]
name = "air-interpreter-cid"
description = "AIR interpreter CID util module"
version = "0.1.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
documentation = "https://docs.rs/air-interpreter-cid"
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/air-lib/interpreter-cid"
keywords = ["fluence", "air", "webassembly", "programming-language", "cid", "ipld"]
categories = ["wasm"]
[dependencies]
cid = { version = "0.9.0", default-features = false, features = ["std"] }
multihash = { version = "0.17.0", default-features = false, features = ["multihash-impl", "std", "sha2"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.89"