Skip to content

Commit 7b52ba9

Browse files
committed
Init commit
0 parents  commit 7b52ba9

File tree

5 files changed

+28
-0
lines changed

5 files changed

+28
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/target
2+
**/*.rs.bk
3+
.idea
4+
*.ipr
5+
*.iml

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[workspace]
2+
3+
members = [
4+
"store",
5+
]

README.MD

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Work in progress
2+
3+
4+
related paper: https://eprint.iacr.org/2013/129.pdf

rust-toolchain

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
stable

store/Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "store"
3+
version = "0.1.0"
4+
authors = ["Constantine Solovev <[email protected]>"]
5+
edition = "2018"
6+
7+
[dependencies]
8+
9+
10+
error-chain = "0.12.0"
11+
tokio = "0.1"
12+
futures = "0.1"
13+

0 commit comments

Comments
 (0)