rs_sha512 0.1.2

`rs_sha512` is a Rust implementation of the SHA-512 cryptographic hash algorithm, part of the larger `rs_ssl` project. This package provides SHA-512 hashing functionality in a standalone manner, ideal for when only SHA-512 is required. Alternatively, for those seeking a comprehensive set of cryptographic functions, this same algorithm is included within the broader `rs_ssl` library bundle. The focus of `rs_sha512` and the larger project is on performance, safety, and openness, with a commitment to ongoing maintenance and enhancement.
Documentation
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3

[[package]]
name = "rs_hasher_ctx"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86156aace310f8c85ff5a4467e72f003541fdc22ee7a30bacd7b50dac661fc94"
dependencies = [
 "rs_internal_hasher",
 "rs_internal_state",
 "rs_n_bit_words",
]

[[package]]
name = "rs_internal_hasher"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b22ea334dd92f24f2f3301f71e1ca4e38eaecd2f47cf1ed8d51b62925919a27"
dependencies = [
 "rs_internal_state",
 "rs_n_bit_words",
]

[[package]]
name = "rs_internal_state"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab1c31d13e18a57681c47cfc0c4a75af4ded5ea909261a715ef52e68465f444a"
dependencies = [
 "rs_n_bit_words",
]

[[package]]
name = "rs_n_bit_words"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad9b1caee2285abe0de997fd64e52b378a9fdb6527777f7362f0a16988669b89"

[[package]]
name = "rs_sha512"
version = "0.1.2"
dependencies = [
 "rs_hasher_ctx",
 "rs_internal_hasher",
 "rs_internal_state",
 "rs_n_bit_words",
]