Remove serde_derive from the dependencies.

This commit is contained in:
2020-01-14 17:44:02 +01:00
parent bdbe025b93
commit 07d43aff0d
4 changed files with 6 additions and 8 deletions

View File

@@ -26,6 +26,5 @@ arrayref = "^0.3"
#log = { version = "^0.4", features = ["max_level_trace", "release_max_level_info"] }
log = { version = "^0.4", features = ["max_level_trace", "release_max_level_trace"] }
serde = "^1.0"
serde_derive = "^1.0"
serde = { version = "^1.0", features = ["derive"] }
bincode = "^1.1"

View File

@@ -5,6 +5,8 @@ use std::marker;
use std::ops::Index;
use ironsea_index::Record;
use serde::Deserialize;
use serde::Serialize;
type Cell<T> = Vec<T>;

View File

@@ -4,9 +4,6 @@ extern crate log;
#[macro_use]
extern crate arrayref;
#[macro_use]
extern crate serde_derive;
mod cell_space;
mod morton;
mod sfc;

View File

@@ -7,14 +7,14 @@ use std::io;
use std::iter::FromIterator;
use std::ops::Index;
use serde::de::DeserializeOwned;
use serde::Serialize;
pub use ironsea_index::IndexedDestructured;
pub use ironsea_index::Record;
pub use ironsea_index::RecordFields;
use ironsea_store::Load;
use ironsea_store::Store;
use serde::de::DeserializeOwned;
use serde::Deserialize;
use serde::Serialize;
use super::cell_space::CellSpace;
use super::morton::MortonCode;