aboutsummaryrefslogtreecommitdiff
path: root/lockchain-client
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-05-08 12:58:09 +0200
committerKatharina Fey <kookie@spacekookie.de>2018-05-08 12:58:09 +0200
commitcd0917de6beb83bd0d84af1cfbb6e5e939814e92 (patch)
tree93aa75da23d8d40593382f6b386ae66aa815051b /lockchain-client
parentd4dd69d2f9c430a8f00e1eb7b1c82361caa0b7b4 (diff)
More crate metadata for crates io
Diffstat (limited to 'lockchain-client')
-rw-r--r--lockchain-client/Cargo.toml12
-rw-r--r--lockchain-client/README.md3
-rw-r--r--lockchain-client/src/lib.rs7
3 files changed, 22 insertions, 0 deletions
diff --git a/lockchain-client/Cargo.toml b/lockchain-client/Cargo.toml
new file mode 100644
index 0000000..9d658ba
--- /dev/null
+++ b/lockchain-client/Cargo.toml
@@ -0,0 +1,12 @@
+[package]
+name = "lockchain-client"
+description = "Client side component of the lockchain stack. Decrypts records and provides a Rust API to use them."
+version = "0.0.0"
+authors = ["Katharina Fey <kookie@spacekookie.de>"]
+
+documentation = "https://docs.rs/lockchain-client"
+homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-client"
+readme = "README.md"
+license = "MIT/X11 OR Apache-2.0"
+
+[dependencies]
diff --git a/lockchain-client/README.md b/lockchain-client/README.md
new file mode 100644
index 0000000..0c97bb0
--- /dev/null
+++ b/lockchain-client/README.md
@@ -0,0 +1,3 @@
+# lockchain-receiver
+
+Client-side endpoint for traffic served from the [lockchain-server](../lockchain-server). \ No newline at end of file
diff --git a/lockchain-client/src/lib.rs b/lockchain-client/src/lib.rs
new file mode 100644
index 0000000..31e1bb2
--- /dev/null
+++ b/lockchain-client/src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}