summaryrefslogtreecommitdiff
path: root/crates/tor-hspow/Cargo.toml
blob: 63e3deaa45b2c6b77878ade9a4aab36f18f62a1a (plain)
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
[package]
name = "tor-hspow"
version = "0.17.0"
authors = ["The Tor Project, Inc.", "Micah Elizabeth Scott <[email protected]>"]
edition = "2021"
rust-version = "1.77"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Solve and verify proof-of-work client puzzles used by onion services"
keywords = ["tor", "arti", "cryptography"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

publish = false

[features]
default = []
full = ["tor-hscrypto/full", "equix/full"]

[dependencies]
arrayvec = "0.7.4"
blake2 = "0.10.6"
derive_more = { version = "1.0.0", features = ["full"] }
equix = { path = "../equix", version = "0.2.0" }
rand = "0.8.5"
thiserror = "1"
tor-hscrypto = { version = "0.23.0", path = "../tor-hscrypto" }

[dev-dependencies]
hex-literal = "0.4.1"