Skip to content

Commit 38608b9

Browse files
authored
bypass circular dependency on same version when publishing (#269)
Signed-off-by: Andrei Gherghescu <[email protected]>
1 parent db69b35 commit 38608b9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

plotly/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ image = "0.25"
5050
itertools = ">=0.10, <0.15"
5151
itertools-num = "0.1"
5252
ndarray = "0.16"
53-
plotly_kaleido = { version = "0.12", path = "../plotly_kaleido", features = [
54-
"download",
55-
] }
53+
plotly_kaleido = { path = "../plotly_kaleido", features = ["download"] }
5654
rand_distr = "0.4"
5755
base64 = "0.22"

plotly_kaleido/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dunce = "1.0"
2727
base64 = "0.22"
2828

2929
[dev-dependencies]
30-
plotly_kaleido = { version = "0.12", path = ".", features = ["download"] }
30+
plotly_kaleido = { path = ".", features = ["download"] }
3131

3232
[build-dependencies]
3333
zip = "2.1"

0 commit comments

Comments
 (0)