[package] name = "unfhash" version = "0.1.0" edition = "2018" license = "GPL-2.0-or-later" authors = [ "Lissa Hyacinth " ] repository = "https://github.com/lissahyacinth/unf" description = "Calculate the Unique Numeric Fingerprint for Tabular Data" exclude = [ "data/*", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "unfhash" path = "src/lib.rs" [[bin]] name = "unf-rs" path = "src/main.rs" [dependencies] sha2 = "0.9.8" arrow = { version = "5.3", default-features = false, features = ["csv"] } base64 = "0.13.0" clap = "2.33.3" md-5 = "0.9.1" num = "0.4.0" num-traits = "0.2.14"