We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f8f038 commit 9786a20Copy full SHA for 9786a20
raphtory/Cargo.toml
@@ -123,7 +123,6 @@ io = [
123
"dep:tokio",
124
"dep:parquet",
125
"dep:tempfile",
126
- "proto",
127
"kdam",
128
]
129
@@ -149,7 +148,6 @@ python = [
149
148
"io",
150
"arrow",
151
"vectors",
152
153
"dep:pyo3",
154
"dep:numpy",
155
"dep:num",
raphtory/src/serialise/parquet/model.rs
@@ -54,8 +54,8 @@ impl<'a> Serialize for ParquetProp<'a> {
54
state.end()
55
}
56
Prop::Decimal(dec) => serializer.serialize_str(&dec.to_string()),
57
- _ => {
58
- todo!("Serializer not implemented")
+ Prop::Array(_) => {
+ todo!("Serializer not implemented for Array (TODO: ")
59
60
61
0 commit comments