Skip to content

Commit db1e052

Browse files
MagicalTuxclaude
andcommitted
Drop "generic volunteer" framing; it's just decryptd
Reword the crate description, README intro, and doc comments to describe decryptd as a GPU job runner for decrypt, without the "volunteer" branding. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent ae82a2b commit db1e052

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "Proprietary"
66
authors = ["Karpeles Lab Inc"]
77
repository = "https://github.com/KarpelesLab/decryptd"
88
rust-version = "1.95"
9-
description = "Generic volunteer GPU job runner for decrypt"
9+
description = "decryptd — GPU job runner for decrypt"
1010
build = "build.rs"
1111

1212
# NOTE: links the CUDA driver (libcuda) for the generic launch path. No nvcc/toolkit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# decryptd
22

3-
A volunteer GPU worker for **decrypt**. Run it on a machine with an NVIDIA GPU
3+
A GPU worker for **decrypt**. Run it on a machine with an NVIDIA GPU
44
and it quietly does distributed compute jobs in the background: it asks the
55
coordinator for a chunk of work, runs it on your GPU, sends the result back, and
66
repeats — forever, until you stop it. Run and forget.

build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Build script: links the CUDA driver (libcuda) for decryptd's generic launch
2-
//! path — no nvcc, only the NVIDIA driver every volunteer already has — and, on
3-
//! Windows, embeds the application icon into the executable.
2+
//! path — no nvcc, only the NVIDIA driver — and, on Windows, embeds the
3+
//! application icon into the executable.
44
55
use std::path::Path;
66
use std::process::Command;

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
windows_subsystem = "windows"
77
)]
88

9-
//! `decryptd` — a generic volunteer GPU job runner for decrypt.
9+
//! `decryptd` — a GPU job runner for decrypt.
1010
//!
1111
//! decryptd knows nothing about bloom filters, RNG, or BIP39. It just:
1212
//! 1. claims a fragment of work from the platform (`Decrypt/Job:pullOne`),

0 commit comments

Comments
 (0)