From 4ffad8d6b5e9fcc76cbb82cf346fabbdb872b903 Mon Sep 17 00:00:00 2001 From: Ivan Boldyrev Date: Mon, 26 Dec 2022 19:35:49 +0700 Subject: [PATCH] Fix interpreter-cid compilation (#411) The serde crate was missing "derive" feature. --- crates/air-lib/interpreter-cid/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/air-lib/interpreter-cid/Cargo.toml b/crates/air-lib/interpreter-cid/Cargo.toml index a6929fde..aca738f2 100644 --- a/crates/air-lib/interpreter-cid/Cargo.toml +++ b/crates/air-lib/interpreter-cid/Cargo.toml @@ -13,5 +13,5 @@ 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 = "1.0.147" +serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.89"