summaryrefslogtreecommitdiffstats
path: root/vendor/plotters-svg/src
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:25:56 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:25:56 +0000
commit018c4950b9406055dec02ef0fb52f132e2bb1e2c (patch)
treea835ebdf2088ef88fa681f8fad45f09922c1ae9a /vendor/plotters-svg/src
parentAdding debian version 1.75.0+dfsg1-5. (diff)
downloadrustc-018c4950b9406055dec02ef0fb52f132e2bb1e2c.tar.xz
rustc-018c4950b9406055dec02ef0fb52f132e2bb1e2c.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/plotters-svg/src')
-rw-r--r--vendor/plotters-svg/src/svg.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/plotters-svg/src/svg.rs b/vendor/plotters-svg/src/svg.rs
index 43bf36a24..7ea105d3a 100644
--- a/vendor/plotters-svg/src/svg.rs
+++ b/vendor/plotters-svg/src/svg.rs
@@ -8,12 +8,12 @@ use plotters_backend::{
FontStyle, FontTransform,
};
+use std::fmt::Write as _;
use std::fs::File;
#[allow(unused_imports)]
use std::io::Cursor;
use std::io::{BufWriter, Error, Write};
use std::path::Path;
-use std::fmt::Write as _;
fn make_svg_color(color: BackendColor) -> String {
let (r, g, b) = color.rgb;