Extract kvstore into separate crate (#3327)

* extract kvstore into new crate

* add kvstore crate to CI publishing list
This commit is contained in:
Mark
2019-03-15 18:42:47 -05:00
committed by GitHub
parent 5f58e9cd6e
commit 656fb173f9
22 changed files with 83 additions and 45 deletions

View File

@ -1,7 +1,7 @@
use crate::entry::Entry;
use crate::kvstore::{self, Key, KvStore};
use crate::packet::Blob;
use crate::result::{Error, Result};
use solana_kvstore::{self as kvstore, Key, KvStore};
use std::sync::Arc;