Skip to content

Commit

Permalink
chore: switched default serializer from postcard to bincode
Browse files Browse the repository at this point in the history
  • Loading branch information
nishaq503 committed Nov 11, 2023
1 parent 9600dd9 commit b3c5eb7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions abd-clam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ publish = true
distances = { version = "1.6.0", path = "../distances" }
rayon = "1.8.0"
serde = { version = "1.0.188", features = ["derive"] }
postcard = { version = "1.0.8", features = ["alloc"] }

# TODO: Experiment with other serialization formats for performance.
bincode = "1.3.3"

# Only used for Dataset::choose_unique
# TODO: Use a smaller crate so we can have a smaller binary
Expand All @@ -47,7 +49,6 @@ priority-queue = "1.3.2"
automl = "0.2.7"
# Only used for normalizing cluster ratios for CHAODA
libm = "0.2.7"
bincode = "1.3.3"

# Only used for sharded datasets
# TODO: Break sharded datasets out into an optional feature
Expand Down

0 comments on commit b3c5eb7

Please sign in to comment.