[package]
edition = "2021"
rust-version = "1.91.0"
name = "pocx_plotfile"
version = "1.0.0"
authors = ["Proof of Capacity Consortium"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, safe, and cross-platform library for reading and writing PoC cryptocurrency plot files"
homepage = "https://bitcoin-pocx.org/"
documentation = "https://github.com/PoC-Consortium/pocx/wiki"
readme = "README.md"
keywords = [
"poc",
"cryptocurrency",
"mining",
"plotfile",
"shabal256",
]
categories = [
"cryptography",
"filesystem",
"parsing",
]
license = "MIT"
repository = "https://github.com/PoC-Consortium/pocx"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
opencl = []
simd = []
[lib]
name = "pocx_plotfile"
path = "src/lib.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.cfg-if]
version = "1.0"
[dependencies.filetime]
version = "0.2"
[dependencies.hex]
version = "0.4.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.page_size]
version = "0.6"
[dependencies.pocx_address]
version = "1.0.0"
[dependencies.rand]
version = "0.9.2"
features = [
"small_rng",
"std",
]
[dev-dependencies.arbitrary]
version = "1.4"
features = ["derive"]
[dev-dependencies.proptest]
version = "1.8"
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.quickcheck_macros]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.23"
[target."cfg(not(windows))".dependencies.fs2]
version = "0.4"
[target."cfg(not(windows))".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"std",
"fileapi",
"securitybaseapi",
"errhandlingapi",
"handleapi",
"processthreadsapi",
"winbase",
]