Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
de-sh committed Apr 8, 2021
1 parent 07dc43c commit 9996b05
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dstore"
version = "0.1.0"
version = "0.1.2"
authors = ["Devdutt Shenoi <[email protected]>"]
license = "Apache-2.0"
description = "A partially distributed storage framework, using the two-layer architecture."
Expand All @@ -16,4 +16,4 @@ tonic = "0.3"
prost = "0.6"

[build-dependencies]
tonic-build = "0.3.0"
tonic-build = "0.3.0"
2 changes: 1 addition & 1 deletion examples/global.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use dstore::global::Global;
use dstore::Global;
use std::error::Error;

/// Start Global server on defined IP:PORT address
Expand Down
2 changes: 1 addition & 1 deletion examples/local.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use bytes::Bytes;
use dstore::local::Local;
use dstore::Local;
use std::{
error::Error,
io::{self, stdin, BufRead, Write},
Expand Down
7 changes: 5 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@ mod dstore_proto {
/// Maximum size of contents in a gRPC packet as per standard
pub const MAX_BYTE_SIZE: usize = 4_194_304;

pub mod global;
pub mod local;
mod global;
mod local;

pub use global::Global;
pub use local::Local;

0 comments on commit 9996b05

Please sign in to comment.