From 9e02cee4142b698d0cd100439d900d28a98c291f Mon Sep 17 00:00:00 2001 From: Sebastian Wolfram Date: Thu, 28 Nov 2024 16:49:48 +0100 Subject: [PATCH] fix dependencies for doc test --- identity_iota/Cargo.toml | 2 ++ identity_iota/README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/identity_iota/Cargo.toml b/identity_iota/Cargo.toml index 81f96fd55..c61cbbd4f 100644 --- a/identity_iota/Cargo.toml +++ b/identity_iota/Cargo.toml @@ -22,7 +22,9 @@ identity_storage = { version = "=1.4.0", path = "../identity_storage", default-f identity_verification = { version = "=1.4.0", path = "../identity_verification", default-features = false } [dev-dependencies] +# required for doc test anyhow = "1.0.64" +identity_iota = { version = "=1.4.0", path = "./", features = ["memstore"] } iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9" } rand = "0.8.5" tokio = { version = "1.29.0", features = ["full"] } diff --git a/identity_iota/README.md b/identity_iota/README.md index c66dd54e3..76ff3895b 100644 --- a/identity_iota/README.md +++ b/identity_iota/README.md @@ -92,7 +92,7 @@ version = "1.0.0" edition = "2021" [dependencies] -identity_iota = { git = "https://github.com/iotaledger/identity.rs.git", tag = "v1.6.0-alpha" } +identity_iota = { git = "https://github.com/iotaledger/identity.rs.git", tag = "v1.6.0-alpha", features = ["memstore"] } iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.7.0-alpha" } tokio = { version = "1", features = ["full"] } anyhow = "1.0.62"