From 07dc43c87464ab4b59e4efaa00478399fcf25b6c Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Mon, 25 Jan 2021 00:02:31 +0530 Subject: [PATCH] Publish crate --- Cargo.toml | 3 +++ README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a9f4e4c..326a54c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,9 @@ name = "dstore" version = "0.1.0" authors = ["Devdutt Shenoi "] +license = "Apache-2.0" +description = "A partially distributed storage framework, using the two-layer architecture." +homepage = "https://vyuham.github.io/dstore" edition = "2018" [dependencies] diff --git a/README.md b/README.md index 3c5c43e..2f0ec25 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

-dstore is a distributed storage framework inspired from the [FAASM project](https://github.com/faasm). +dstore is a partially distributed storage framework inspired from the [FAASM project](https://github.com/faasm). ## Database Built as an in-memory datastore with dual layer architecture that enables the storage of Key-Value pairs on nodes in coherence with a single **'Global'** datastore for synchronization purposes. Keys are UIDs and should technically only be associated with **a** Value for eternity. Hopefully that will be implemented with the hash of said Value being used for the same. diff --git a/src/lib.rs b/src/lib.rs index d501229..e1367b4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ impl fmt::Display for DstoreError { impl Error for DstoreError {} -pub mod dstore_proto { +mod dstore_proto { tonic::include_proto!("dstore"); }