Skip to content

Commit 9786a20

Browse files
committed
proto feature shouldn't be part of io
1 parent 0f8f038 commit 9786a20

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

raphtory/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ io = [
123123
"dep:tokio",
124124
"dep:parquet",
125125
"dep:tempfile",
126-
"proto",
127126
"kdam",
128127
]
129128

@@ -149,7 +148,6 @@ python = [
149148
"io",
150149
"arrow",
151150
"vectors",
152-
"proto",
153151
"dep:pyo3",
154152
"dep:numpy",
155153
"dep:num",

raphtory/src/serialise/parquet/model.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ impl<'a> Serialize for ParquetProp<'a> {
5454
state.end()
5555
}
5656
Prop::Decimal(dec) => serializer.serialize_str(&dec.to_string()),
57-
_ => {
58-
todo!("Serializer not implemented")
57+
Prop::Array(_) => {
58+
todo!("Serializer not implemented for Array (TODO: ")
5959
}
6060
}
6161
}

0 commit comments

Comments
 (0)