- bump dependencies

- bump git action versions
This commit is contained in:
Wim Pomp
2025-12-13 10:40:12 +01:00
parent ff9d82d57f
commit 86f1c50c30
6 changed files with 58 additions and 46 deletions
+5 -6
View File
@@ -1,14 +1,13 @@
use thiserror::Error;
#[derive(Debug, Error)]
pub enum Error {
#[error("io error: {0}")]
#[error(transparent)]
IO(#[from] std::io::Error),
#[error(transparent)]
ColorCet(#[from] colorcet::ColorcetError),
#[error("could not parse color: {0}")]
ColorParse(String),
#[error("colorcet error: {0}")]
ColorCet(#[from] colorcet::ColorcetError),
#[error("could not covert ColorMap into LinearGradient")]
Conversion
}
Conversion,
}