[package]
edition = "2021"
rust-version = "1.91.0"
name = "pocx_plotter"
version = "1.0.0-rc.9"
authors = ["Proof of Capacity Consortium"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Universal Proof-of-Capacity plotting tool for any PoC cryptocurrency.\r
CPU and GPU acceleration with OpenCL, SIMD optimizations, and memory-mapped I/O.\r
"""
homepage = "https://bitcoin-pocx.org/"
documentation = "https://github.com/PoC-Consortium/pocx/wiki"
readme = "README.md"
keywords = [
"poc",
"proof-of-capacity",
"plotter",
"rust",
"cryptocurrency",
]
categories = [
"cryptography",
"algorithms",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/PoC-Consortium/pocx"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = [
"simd",
"opencl",
]
opencl = ["opencl3"]
simd = []
[lib]
name = "pocx_plotter"
path = "src/lib.rs"
[[bin]]
name = "pocx_plotter"
path = "src/main.rs"
[[test]]
name = "fuzz_tests"
path = "tests/fuzz_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "performance_tests"
path = "tests/performance_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.bytesize]
version = "2.0.1"
[dependencies.cfg-if]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.core_affinity]
version = "0.8"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.fs2]
version = "0.4"
[dependencies.hex]
version = "0.4.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.libc]
version = "0.2"
[dependencies.num_cpus]
version = "1.16"
[dependencies.opencl3]
version = "0.10"
features = ["dynamic"]
optional = true
[dependencies.page_size]
version = "0.6"
[dependencies.pocx_address]
version = "1.0.0-rc.9"
[dependencies.pocx_hashlib]
version = "1.0.0-rc.9"
[dependencies.pocx_plotfile]
version = "1.0.0-rc.9"
[dependencies.rand]
version = "0.9.2"
features = [
"small_rng",
"std",
]
[dependencies.rayon]
version = "1.10"
[dependencies.sysinfo]
version = "0.32"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.tempfile]
version = "3.8"
[target."cfg(linux)".dependencies]
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"std",
"fileapi",
"securitybaseapi",
]