From 728eeda8657ddc4c1f066ec3bda4afe8e80c1352 Mon Sep 17 00:00:00 2001 From: Max Murphy Date: Thu, 7 Dec 2023 16:35:31 +0100 Subject: [PATCH] Override candid dep --- ic-agent/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ic-agent/Cargo.toml b/ic-agent/Cargo.toml index 8308d2b7..30d17854 100644 --- a/ic-agent/Cargo.toml +++ b/ic-agent/Cargo.toml @@ -17,7 +17,7 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"] [dependencies] backoff = "0.4.0" cached = { version = "0.46", features = ["ahash"], default-features = false } -candid = { workspace = true, features = ["value"] } +candid = { workspace = true } ed25519-consensus = { version = "2" } futures-util = "0.3.21" hex = { workspace = true } @@ -75,6 +75,7 @@ web-sys = { version = "0.3", features = ["Window"], optional = true } [dev-dependencies] serde_json = "1.0.79" +candid = { workspace = true, features = ["value"]} [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] tokio = { version = "1.24.2", features = ["full"] }