From 477fc4bf1ec1f90fbf070ad44bfc0532a0931d70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Fri, 17 Aug 2018 17:58:18 +0100 Subject: [PATCH] Add goals and test scaffold --- README.md | 7 +++++++ src/main.rs | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6c7b96f --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +Goals: +* fast +* using max bandwidth +* memory usage limit +* encryption by default - asymmetric, creates a keypair for you +* deduplication + diff --git a/src/main.rs b/src/main.rs index e7a11a9..3f38c98 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,13 @@ fn main() { println!("Hello, world!"); } + +#[cfg(test)] +mod should { + + #[test] + fn hash_scanned_files(){ + + } + +} \ No newline at end of file