Skip to content

Commit

Permalink
Publish crate
Browse files Browse the repository at this point in the history
  • Loading branch information
de-sh committed Jan 24, 2021
1 parent 58f0c84 commit 07dc43c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name = "dstore"
version = "0.1.0"
authors = ["Devdutt Shenoi <[email protected]>"]
license = "Apache-2.0"
description = "A partially distributed storage framework, using the two-layer architecture."
homepage = "https://vyuham.github.io/dstore"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center"><img src="docs/dstore.png" width="350px"/></p>

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.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ impl fmt::Display for DstoreError {

impl Error for DstoreError {}

pub mod dstore_proto {
mod dstore_proto {
tonic::include_proto!("dstore");
}

Expand Down

0 comments on commit 07dc43c

Please sign in to comment.