aboutsummaryrefslogtreecommitdiff
path: root/lockchain-files
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-05-08 13:12:05 +0200
committerKatharina Fey <kookie@spacekookie.de>2018-05-08 13:12:05 +0200
commit73ff5fdf4d94ba244abeb3796ef16fe3f69157d7 (patch)
treea41f02c4631f79fc74124c5acecfa972e66fac45 /lockchain-files
parent17a190d11724f9584403189852baf582703e53f6 (diff)
Renaming storage module before it's too late
Diffstat (limited to 'lockchain-files')
-rw-r--r--lockchain-files/Cargo.toml13
-rw-r--r--lockchain-files/README.md3
-rw-r--r--lockchain-files/src/lib.rs7
-rw-r--r--lockchain-files/src/vault.rs0
4 files changed, 23 insertions, 0 deletions
diff --git a/lockchain-files/Cargo.toml b/lockchain-files/Cargo.toml
new file mode 100644
index 0000000..8b6b828
--- /dev/null
+++ b/lockchain-files/Cargo.toml
@@ -0,0 +1,13 @@
+[package]
+name = "lockchain-files"
+description = "Filesystem storage backend for lockchain vaults"
+version = "0.0.0"
+authors = ["Katharina Fey <kookie@spacekookie.de>"]
+
+documentation = "https://docs.rs/lockchain-files"
+homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-files"
+readme = "README.md"
+license = "MIT/X11 OR Apache-2.0"
+
+[dependencies]
+lockchain-core = ">=0.3.2"
diff --git a/lockchain-files/README.md b/lockchain-files/README.md
new file mode 100644
index 0000000..d797193
--- /dev/null
+++ b/lockchain-files/README.md
@@ -0,0 +1,3 @@
+# lockchain-store
+
+Plugin storage backend for `lockchain-core`. This crate might be expanded on in the future. For now, it provides an easy to use implementation for storage traits on the vaults structures. \ No newline at end of file
diff --git a/lockchain-files/src/lib.rs b/lockchain-files/src/lib.rs
new file mode 100644
index 0000000..31e1bb2
--- /dev/null
+++ b/lockchain-files/src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
diff --git a/lockchain-files/src/vault.rs b/lockchain-files/src/vault.rs
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/lockchain-files/src/vault.rs