-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump plotly version and edition to 2021
- bump edition to 2021 - set resolver to 2 to bypasses latest wasm-bindgen bug: rustwasm/wasm-bindgen#4304 - remove patch versioning from all dependencies Signed-off-by: Andrei Gherghescu <[email protected]>
- Loading branch information
Showing
17 changed files
with
58 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[workspace] | ||
members = [ | ||
"plotly", | ||
"plotly_derive", | ||
"plotly_kaleido", | ||
] | ||
resolver = "2" | ||
members = ["plotly", "plotly_derive", "plotly_kaleido"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ authors = ["Michael Freeborn <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
ndarray = "0.16.0" | ||
rand = "0.8.5" | ||
ndarray = "0.16" | ||
rand = "0.8" | ||
plotly = { path = "../../plotly" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Michael Freeborn <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
ndarray = "0.16.0" | ||
ndarray = "0.16" | ||
plotly = { path = "../../plotly" } | ||
rand = "0.8.5" | ||
rand_distr = "0.4.3" | ||
rand = "0.8" | ||
rand_distr = "0.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,5 @@ authors = ["Michael Freeborn <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
itertools = "0.10.3" | ||
plotly = { path = "../../plotly" } | ||
itertools = "0.10" | ||
plotly = { path = "../../plotly" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ authors = ["Michael Freeborn <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
csv = "1.1.6" | ||
csv = "1.1" | ||
plotly = { path = "../../plotly" } | ||
serde = "1.0.147" | ||
serde = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,5 @@ authors = ["Michael Freeborn <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
ndarray = "0.16.0" | ||
ndarray = "0.16" | ||
plotly = { path = "../../plotly", features = ["plotly_ndarray"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Michael Freeborn <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
ndarray = "0.16.0" | ||
ndarray = "0.16" | ||
plotly = { path = "../../plotly" } | ||
rand = "0.8.5" | ||
rand_distr = "0.4.3" | ||
rand = "0.8" | ||
rand_distr = "0.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Michael Freeborn <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
ndarray = "0.16.0" | ||
ndarray = "0.16" | ||
plotly = { path = "../../plotly" } | ||
rand = "0.8.5" | ||
rand_distr = "0.4.3" | ||
rand = "0.8" | ||
rand_distr = "0.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
[package] | ||
name = "wasm-yew-minimal" | ||
version = "0.1.0" | ||
authors = ["Michael Freeborn <[email protected]>", "Yuichi Nakamura <[email protected]>"] | ||
authors = [ | ||
"Michael Freeborn <[email protected]>", | ||
"Yuichi Nakamura <[email protected]>", | ||
] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
plotly = { path = "../../plotly", features = ["wasm"] } | ||
yew = "0.21.0" | ||
yew-hooks = "0.3.2" | ||
log = "0.4.6" | ||
yew = "0.21" | ||
yew-hooks = "0.3" | ||
log = "0.4" | ||
wasm-logger = "0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "plotly" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
description = "A plotting library powered by Plotly.js" | ||
authors = ["Ioannis Giagkiozis <[email protected]>"] | ||
license = "MIT" | ||
readme = "../README.md" | ||
homepage = "https://github.com/plotly/plotly.rs" | ||
documentation = "https://docs.rs/plotly" | ||
repository = "https://github.com/plotly/plotly.rs" | ||
edition = "2018" | ||
edition = "2021" | ||
keywords = ["plot", "chart", "plotly"] | ||
|
||
exclude = ["target/*"] | ||
|
@@ -24,30 +24,30 @@ with-axum = ["rinja/with-axum", "rinja_axum"] | |
|
||
[dependencies] | ||
rinja = { version = "0.3", features = ["serde_json"] } | ||
rinja_axum = { version = "0.3.0", optional = true } | ||
rinja_axum = { version = "0.3", optional = true } | ||
dyn-clone = "1" | ||
erased-serde = "0.4" | ||
getrandom = { version = "0.2", features = ["js"], optional = true } | ||
image = { version = "0.25", optional = true } | ||
js-sys = { version = "0.3", optional = true } | ||
plotly_derive = { version = "0.10.0", path = "../plotly_derive" } | ||
plotly_kaleido = { version = "0.10.0", path = "../plotly_kaleido", optional = true } | ||
ndarray = { version = "0.16.0", optional = true } | ||
plotly_derive = { version = "0.11", path = "../plotly_derive" } | ||
plotly_kaleido = { version = "0.11", path = "../plotly_kaleido", optional = true } | ||
ndarray = { version = "0.16", optional = true } | ||
once_cell = "1" | ||
serde = { version = "1.0.132", features = ["derive"] } | ||
serde_json = "1.0.73" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
serde_repr = "0.1" | ||
serde_with = ">=2, <4" | ||
rand = "0.8" | ||
wasm-bindgen = { version = "0.2", optional = true } | ||
wasm-bindgen-futures = { version = "0.4", optional = true } | ||
|
||
[dev-dependencies] | ||
csv = "1.1.6" | ||
csv = "1.1" | ||
image = "0.25" | ||
itertools = ">=0.10, <0.14" | ||
itertools-num = "0.1.3" | ||
ndarray = "0.16.0" | ||
plotly_kaleido = { version = "0.10.0", path = "../plotly_kaleido" } | ||
itertools-num = "0.1" | ||
ndarray = "0.16" | ||
plotly_kaleido = { version = "0.11", path = "../plotly_kaleido" } | ||
rand_distr = "0.4" | ||
base64 = "0.22" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "plotly_derive" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
description = "Internal proc macro crate for Plotly-rs." | ||
authors = ["Ioannis Giagkiozis <[email protected]>"] | ||
license = "MIT" | ||
homepage = "https://github.com/plotly/plotly.rs" | ||
documentation = "https://docs.rs/plotly" | ||
repository = "https://github.com/plotly/plotly.rs" | ||
edition = "2018" | ||
edition = "2021" | ||
keywords = ["plot", "chart", "plotly"] | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "plotly_kaleido" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
description = "Additional output format support for plotly using Kaleido" | ||
authors = ["Ioannis Giagkiozis <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -9,16 +9,16 @@ workspace = ".." | |
homepage = "https://github.com/plotly/plotly.rs" | ||
documentation = "https://docs.rs/plotly_kaleido" | ||
repository = "https://github.com/plotly/plotly.rs" | ||
edition = "2018" | ||
edition = "2021" | ||
keywords = ["plot", "chart", "plotly", "ndarray"] | ||
|
||
exclude = ["target/*", "kaleido/*", "examples/*"] | ||
|
||
[dependencies] | ||
serde = { version = "1.0.132", features = ["derive"] } | ||
serde_json = "1.0.73" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
base64 = "0.22" | ||
dunce = "1.0.2" | ||
dunce = "1.0" | ||
directories = ">=4, <6" | ||
|
||
[build-dependencies] | ||
|