summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Cargo.toml2
-rw-r--r--scripts/src/bin/generate-charts/progress.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/scripts/Cargo.toml b/scripts/Cargo.toml
index 5217729..a1baadf 100644
--- a/scripts/Cargo.toml
+++ b/scripts/Cargo.toml
@@ -4,5 +4,5 @@ publish=false
edition.workspace=true
[dependencies]
-plotters={version="0.3"}
+plotters={version="0.3", default-features=false, features=["histogram", "svg_backend"]}
eyre={version="0.6"}
diff --git a/scripts/src/bin/generate-charts/progress.rs b/scripts/src/bin/generate-charts/progress.rs
index 1ecc09c..3cc3c26 100644
--- a/scripts/src/bin/generate-charts/progress.rs
+++ b/scripts/src/bin/generate-charts/progress.rs
@@ -72,6 +72,5 @@ pub fn create_progress_chart(name: &str, csv_path: &Path, output_path: &Path) ->
)?;
root_area.present()?;
-
Ok(())
}