simd_json instead of serde_json
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-08-23 11:34:33 +03:00
parent 760f6d9415
commit e1ef9cc3c3
9 changed files with 165 additions and 31 deletions

View File

@@ -15,7 +15,6 @@ harness = false
[dependencies]
chgk_ledb_lib = {path = "../lib", features = ["sync", "source", "convert"]}
serde_json="1.0"
zip="0.6"
rand="0.8"
clap = { version = "4.2.7", features = ["derive"] }

View File

@@ -3,7 +3,6 @@ extern crate criterion;
extern crate bincode;
extern crate serde;
extern crate serde_derive;
extern crate serde_json;
extern crate tempfile;
use chgk_ledb_lib::db;

View File

@@ -1,4 +1,3 @@
extern crate serde_json;
use clap::{Parser, Subcommand};
use rand::seq::IteratorRandom;