Add goals and test scaffold
This commit is contained in:
parent
92d7e7eb8f
commit
477fc4bf1e
2 changed files with 17 additions and 0 deletions
7
README.md
Normal file
7
README.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
Goals:
|
||||
* fast
|
||||
* using max bandwidth
|
||||
* memory usage limit
|
||||
* encryption by default - asymmetric, creates a keypair for you
|
||||
* deduplication
|
||||
|
10
src/main.rs
10
src/main.rs
|
@ -1,3 +1,13 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod should {
|
||||
|
||||
#[test]
|
||||
fn hash_scanned_files(){
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue