# 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.63.0" name = "chksum-hash" version = "0.5.1" authors = ["Konrad GoĊ‚awski "] description = "An implementation of hash algorithms for batch and stream computation." readme = ".cargo/README.md" keywords = [ "checksum", "digest", "hash", ] categories = [ "algorithms", "cryptography", ] license = "MIT" repository = "https://github.com/chksum-rs/hash" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.chksum-hash-core] version = "0.0.0" [dependencies.chksum-hash-md5] version = "0.0.1" optional = true [dependencies.chksum-hash-sha1] version = "0.0.1" optional = true [dependencies.chksum-hash-sha2] version = "0.0.1" optional = true default-features = false [features] default = [ "md5", "sha1", "sha2", ] md5 = ["chksum-hash-md5"] sha1 = ["chksum-hash-sha1"] sha2 = [ "chksum-hash-sha2", "sha2-224", "sha2-256", "sha2-384", "sha2-512", ] sha2-224 = ["chksum-hash-sha2/224"] sha2-256 = ["chksum-hash-sha2/256"] sha2-384 = ["chksum-hash-sha2/384"] sha2-512 = ["chksum-hash-sha2/512"]