aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig29
1 files changed, 18 insertions, 11 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index d62f4f9..7ba56ac 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "plotters"
-version = "0.3.4"
+version = "0.3.5"
authors = ["Hao Hou <haohou302@gmail.com>"]
edition = "2018"
license = "MIT"
@@ -17,25 +17,28 @@ num-traits = "0.2.14"
chrono = { version = "0.4.20", optional = true }
[dependencies.plotters-backend]
-#path = "../plotters-backend"
-version = "0.3"
+version = "0.3.5"
+path = "../plotters-backend"
[dependencies.plotters-bitmap]
+version = "0.3.3"
default_features = false
optional = true
-#path = "../plotters-bitmap"
-version = "0.3"
+path = "../plotters-bitmap"
[dependencies.plotters-svg]
-version = "^0.3"
+version = "0.3.5"
optional = true
-#path = "../plotters-svg"
+path = "../plotters-svg"
[target.'cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"))))'.dependencies]
-ttf-parser = { version = "0.15.0", optional = true }
+ttf-parser = { version = "0.17.0", optional = true }
lazy_static = { version = "1.4.0", optional = true }
pathfinder_geometry = { version = "0.5.1", optional = true }
font-kit = { version = "0.11.0", optional = true }
+ab_glyph = { version = "0.2.12", optional = true }
+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"
@@ -67,19 +70,21 @@ default = [
"ttf",
"image",
"deprecated_items", "all_series", "all_elements",
- "full_palette"
+ "full_palette",
+ "colormaps"
]
all_series = ["area_series", "line_series", "point_series", "surface_series"]
all_elements = ["errorbar", "candlestick", "boxplot", "histogram"]
# Tier 1 Backends
-bitmap_backend = ["plotters-bitmap", "ttf"]
+bitmap_backend = ["plotters-bitmap"]
bitmap_encoder = ["plotters-bitmap/image_encoder"]
bitmap_gif = ["plotters-bitmap/gif_backend"]
svg_backend = ["plotters-svg"]
# Colors
full_palette = []
+colormaps = []
# Elements
errorbar = []
@@ -99,6 +104,8 @@ ttf = ["font-kit", "ttf-parser", "lazy_static", "pathfinder_geometry"]
# Can be useful for cross compiling, especially considering fontconfig has lots of C dependencies
fontconfig-dlopen = ["font-kit/source-fontconfig-dlopen"]
+ab_glyph = ["dep:ab_glyph", "once_cell"]
+
# Misc
datetime = ["chrono"]
evcxr = ["svg_backend"]
@@ -107,7 +114,7 @@ deprecated_items = [] # Keep some of the deprecated items for backward compatibi
[dev-dependencies]
itertools = "0.10.0"
-criterion = "0.3.6"
+criterion = "0.4.0"
rayon = "1.5.1"
serde_json = "1.0.82"
serde = "1.0.139"