Started binary package: phash-sum. (skel)

Fortune for phash's current commit: Blessing − 吉
master
Avril 2 years ago
parent 5645ff417c
commit da24aedc5c
Signed by: flanchan
GPG Key ID: 284488987C31F630

@ -3,7 +3,13 @@ name = "phash"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
#See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["rlib", "staticlib", "cdylib"]
[[bin]]
name="phash-sum"
[dependencies]
#atomic_refcell = "0.1.8"

@ -0,0 +1,7 @@
extern crate phash;
use phash::*;
fn main()
{
//TODO: mmap first argument if it exists; or attempt to mmap stdin; or stream read from stdin into a ParallelDigest etc
}
Loading…
Cancel
Save