This commit is contained in:
Dominik Werder
2024-11-04 16:35:26 +01:00
parent 5543389c1e
commit 35d15c4694
32 changed files with 268 additions and 220 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ chrono = { version = "0.4.19", features = ["serde"] }
url = "2.2"
humantime = "2.1.0"
humantime-serde = "1.1.1"
thiserror = "1"
thiserror = "0.0.1"
netpod = { path = "../netpod" }
items_0 = { path = "../items_0" }
items_2 = { path = "../items_2" }
+2
View File
@@ -22,9 +22,11 @@ use url::Url;
#[derive(Debug, thiserror::Error)]
#[cstm(name = "BinnedQuery")]
pub enum Error {
BadInt(#[from] std::num::ParseIntError),
MultipleBinCountBinWidth,
BadUseRt,
Netpod(#[from] netpod::NetpodError),
Transform(#[from] crate::transform::Error),
}
mod serde_option_vec_duration {