Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions plotters-bitmap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
gif = { version = "0.12.0", optional = true }
gif = { version = "0.14.0", optional = true }

[dependencies.plotters-backend]
version = "0.3.6"
path = "../plotters-backend"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.image]
version = "0.24.3"
version = "0.25.9"
optional = true
default-features = false
features = ["jpeg", "png", "bmp"]
Expand All @@ -35,7 +35,7 @@ features = ["ttf", "line_series", "bitmap_backend"]
path = "../plotters"

[dev-dependencies]
criterion = "0.5.1"
criterion = "0.8.1"
rayon = "1.5.1"

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion plotters-svg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ version = "0.3.6"
path = "../plotters-backend"

[dependencies.image]
version = "0.24.2"
version = "0.25.9"
optional = true
default-features = false
features = ["jpeg", "png", "bmp"]
Expand Down
14 changes: 7 additions & 7 deletions plotters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ optional = true
path = "../plotters-svg"

[target.'cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"))))'.dependencies]
ttf-parser = { version = "0.20.0", optional = true }
ttf-parser = { version = "0.25.1", optional = true }
lazy_static = { version = "1.4.0", optional = true }
pathfinder_geometry = { version = "0.5.1", optional = true }
font-kit = { version = "0.14.2", optional = true }
Expand All @@ -47,7 +47,7 @@ once_cell = { version = "1.8.0", optional = true }


[target.'cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"))))'.dependencies.image]
version = "0.24.3"
version = "0.25.9"
optional = true
default-features = false
features = ["jpeg", "png", "bmp"]
Expand Down Expand Up @@ -120,17 +120,17 @@ evcxr_bitmap = ["evcxr", "bitmap_backend", "plotters-svg/bitmap_encoder"]
deprecated_items = [] # Keep some of the deprecated items for backward compatibility

[dev-dependencies]
itertools = "0.10.0"
criterion = "0.5.1"
itertools = "0.14.0"
criterion = "0.8.1"
rayon = "1.5.1"
serde_json = "1.0.82"
serde_derive = "1.0.140"
plotters = { path = ".", features = ["serialization"] }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
rand = "0.8.3"
rand_distr = "0.4.0"
rand_xorshift = "0.3.0"
rand = "0.9.2"
rand_distr = "0.5.1"
rand_xorshift = "0.4.0"

[target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dev-dependencies]
wasm-bindgen-test = "0.3.39"
Expand Down