equihash 0.3.0

The Equihash Proof-of-Work function
Documentation
# 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 = "2024"
rust-version = "1.85.1"
name = "equihash"
version = "0.3.0"
authors = ["Jack Grigg <jack@z.cash>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Equihash Proof-of-Work function"
homepage = "https://github.com/zcash/librustzcash"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/librustzcash"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
solver = [
    "dep:cc",
    "std",
]
std = ["document-features"]

[lib]
name = "equihash"
path = "src/lib.rs"
bench = false

[dependencies.blake2b_simd]
version = "1"
default-features = false

[dependencies.corez]
version = "0.1.1"
features = ["alloc"]
default-features = false

[dependencies.document-features]
version = "0.2"
optional = true

[dev-dependencies.hex]
version = "0.4"

[build-dependencies.cc]
version = "1"
optional = true

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    'cfg(zcash_unstable, values("zfuture", "nu7"))',
    "cfg(live_network_tests)",
]