summaryrefslogtreecommitdiff
path: root/subplotlib-derive
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2023-11-11 10:25:03 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2023-11-11 10:25:03 +0000
commit726bc2d6d8b13b3e914c82f1aaf0c0c53d38aead (patch)
treed03f573d1c3e0e43156b849cc41c706ce8247098 /subplotlib-derive
parent7252cf5c1e0288b1bbb54908999fc7524d12bf1e (diff)
downloadsubplot-726bc2d6d8b13b3e914c82f1aaf0c0c53d38aead.tar.gz
chore: Update from fehler to culpa
Diffstat (limited to 'subplotlib-derive')
-rw-r--r--subplotlib-derive/Cargo.toml2
-rw-r--r--subplotlib-derive/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/subplotlib-derive/Cargo.toml b/subplotlib-derive/Cargo.toml
index cb181d6..7d5b0c4 100644
--- a/subplotlib-derive/Cargo.toml
+++ b/subplotlib-derive/Cargo.toml
@@ -21,4 +21,4 @@ proc-macro = true
syn = { version = "2", features = ["full"] }
quote = "1"
proc-macro2 = "1"
-fehler = "1"
+culpa = "1.0.1"
diff --git a/subplotlib-derive/src/lib.rs b/subplotlib-derive/src/lib.rs
index b10d3b3..8e18c98 100644
--- a/subplotlib-derive/src/lib.rs
+++ b/subplotlib-derive/src/lib.rs
@@ -8,7 +8,7 @@ use syn::{
use quote::quote;
-use fehler::{throw, throws};
+use culpa::{throw, throws};
fn ty_is_borrow_str(ty: &Type) -> bool {
if let Type::Reference(ty) = ty {