From 0fcbbcbe6af9483288e87210650a0d29d579068a Mon Sep 17 00:00:00 2001 From: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> Date: Thu, 2 Jan 2025 12:07:51 +0100 Subject: [PATCH] bypass circular dependency on same version when publishing Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> --- plotly/Cargo.toml | 4 +--- plotly_kaleido/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index bbb7712..9f08cdf 100644 --- a/plotly/Cargo.toml +++ b/plotly/Cargo.toml @@ -50,8 +50,6 @@ image = "0.25" itertools = ">=0.10, <0.15" itertools-num = "0.1" ndarray = "0.16" -plotly_kaleido = { version = "0.12", path = "../plotly_kaleido", features = [ - "download", -] } +plotly_kaleido = { path = "../plotly_kaleido", features = ["download"] } rand_distr = "0.4" base64 = "0.22" diff --git a/plotly_kaleido/Cargo.toml b/plotly_kaleido/Cargo.toml index f900689..8b2ed36 100644 --- a/plotly_kaleido/Cargo.toml +++ b/plotly_kaleido/Cargo.toml @@ -27,7 +27,7 @@ dunce = "1.0" base64 = "0.22" [dev-dependencies] -plotly_kaleido = { version = "0.12", path = ".", features = ["download"] } +plotly_kaleido = { path = ".", features = ["download"] } [build-dependencies] zip = "2.1"