forked from dr-bonez/tor-v3-vanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 967 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "tor-v3-vanity"
version = "0.1.0"
authors = ["Aiden McClelland <[email protected]>"]
edition = "2018"
description = "A TOR v3 vanity url generator designed to run on an nvidia GPU."
license = "MIT"
repository = "https://github.com/dr-bonez/tor-v3-vanity"
documentation = "http://docs.rs/tor-v3-vanity"
readme = "README.md"
keywords = ["tor", "v3", "vanity", "gpu", "cuda"]
include = ["src/**/*", "Cargo.toml", "core/**/*", "build.rs", "README.md", "LICENSE", "foo/bar"]
[[bin]]
name = "t3v"
test = false
bench = false
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base32 = "0.4.0"
chrono = "0.4.13"
clap = "2.33.1"
crossbeam-channel = "0.4.3"
ed25519-dalek = "1.0.0-pre.4"
failure = "0.1.8"
num_cpus = "1.13.0"
rand = "0.7.3"
rustacuda = "0.1.2"
sha3 = "0.9.1"
tor-v3-vanity-core = { version = "0.1.0", path = "./core" }
[build-dependencies]
ptx-builder = "0.5"