summaryrefslogtreecommitdiff
path: root/crates/tor-hscrypto/Cargo.toml
blob: 3b40134e98ec594a5c909d48a39ee38517babc09 (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
31
32
33
[package]
name = "tor-hscrypto"
version = "0.1.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Basic onion service cryptography types used by Aerti"
keywords = ["tor", "arti", "cryptography"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
default = []

[dependencies]
derive_more = "0.99.3"
digest = "0.10.0"
paste = "1"
rand_core = "0.6.2"
serde = { version = "1.0.103", features = ["derive"] }
signature = "1"
thiserror = "1"
tor-llcrypto = { version = "0.4.1", path = "../tor-llcrypto", features = [
    "hsv3-client",
    "hsv3-service",
] }

[dev-dependencies]
hex-literal = "0.3"
humantime = "2"
tor-basic-utils = { version = "0.5.0", path = "../tor-basic-utils" }