# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.60.0" name = "scoop-hash" version = "0.1.0-beta.6" authors = ["Chawye Hsu "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Hashing library for libscoop" homepage = "https://github.com/chawyehsu/hok" readme = "README.md" keywords = [ "hash", "scoop", ] categories = ["cryptography"] license = "MIT OR Apache-2.0" [lib] name = "scoop_hash" path = "src/lib.rs" [[bench]] name = "md5" path = "benches/md5.rs" harness = false [[bench]] name = "sha1" path = "benches/sha1.rs" harness = false [[bench]] name = "sha256" path = "benches/sha256.rs" harness = false [[bench]] name = "sha512" path = "benches/sha512.rs" harness = false [dependencies.md-5] version = "0.10" optional = true [dependencies.sha1] version = "0.10" optional = true [dependencies.sha2] version = "0.10" optional = true [dev-dependencies.criterion] version = "0.4" [features] default = [] rustcrypto = [ "md-5", "sha1", "sha2", ]