From 12cfe01a86516e197bf997872980440e2ffe34b4 Mon Sep 17 00:00:00 2001 From: Lionel Sambuc Date: Tue, 17 Mar 2020 16:28:07 +0100 Subject: [PATCH] Remove temporarily unused dependency --- Cargo.toml | 2 +- src/sfc.rs | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0878d56..4f4361e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ include = ["Cargo.toml", "README.md", "LICENSE", "ACKNOWLEDGEMENTS", "src/**/*.r [dependencies] ironsea_index = "^0.1" -ironsea_store = "^0.1" +#ironsea_store = "^0.1" arrayref = "^0.3" #log = { version = "^0.4", features = ["max_level_trace", "release_max_level_info"] } diff --git a/src/sfc.rs b/src/sfc.rs index f185341..02ce3c4 100644 --- a/src/sfc.rs +++ b/src/sfc.rs @@ -3,16 +3,16 @@ use std::cmp::PartialEq; use std::fmt::Debug; use std::hash::Hash; -use std::io; +//use std::io; use std::iter::FromIterator; use std::ops::Index; 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 ironsea_store::Load; +//use ironsea_store::Store; +//use serde::de::DeserializeOwned; use serde::Deserialize; use serde::Serialize; @@ -327,6 +327,7 @@ where } } +/* impl Store for SpaceFillingCurve where F: PartialEq + Serialize, @@ -365,3 +366,4 @@ where } } } +*/