# 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.70.0" name = "chksum" version = "0.3.0" authors = ["Konrad GoĊ‚awski "] description = "An implementation of hash functions with a straightforward interface for computing digests of bytes, files, directories, and more." readme = ".cargo/README.md" keywords = [ "checksum", "hash", "directory-checksum", "file-checksum", "stdin-checksum", ] categories = [ "algorithms", "cryptography", "filesystem", ] license = "MIT" repository = "https://github.com/chksum-rs/lib" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.chksum-core] version = "0.0.0" [dependencies.chksum-hash] version = "0.5.0" default-features = false [dependencies.chksum-md5] version = "0.0.0" optional = true [dependencies.chksum-reader] version = "0.0.0" optional = true [dependencies.chksum-sha1] version = "0.0.0" optional = true [dependencies.chksum-sha2] version = "0.0.0" optional = true default-features = false [dependencies.chksum-writer] version = "0.0.0" optional = true [features] default = [ "md5", "sha1", "sha2", ] md5 = [ "chksum-md5", "chksum-hash/md5", ] reader = [ "chksum-reader", "chksum-md5?/reader", "chksum-sha1?/reader", "chksum-sha2?/reader", ] sha1 = [ "chksum-sha1", "chksum-hash/sha1", ] sha2 = [ "sha2-224", "sha2-256", "sha2-384", "sha2-512", "chksum-hash/sha2", ] sha2-224 = [ "chksum-sha2/224", "chksum-hash/sha2-224", ] sha2-256 = [ "chksum-sha2/256", "chksum-hash/sha2-256", ] sha2-384 = [ "chksum-sha2/384", "chksum-hash/sha2-384", ] sha2-512 = [ "chksum-sha2/512", "chksum-hash/sha2-512", ] writer = [ "chksum-writer", "chksum-md5?/writer", "chksum-sha1?/writer", "chksum-sha2?/writer", ]