forked from katzenpost/thin_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 823 Bytes
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
[package]
name = "katzenpost_thin_client"
version = "0.0.11"
edition = "2024"
authors = ["David Stainton"]
homepage = "https://katzenpost.network"
description = "This rust crate provides an async thin client library for Katzenpost, a post quantum decryption mixnet."
documentation = "https://docs.rs/katzenpost_thin_client/latest/katzenpost_thin_client/"
repository = "https://github.com/katzenpost/thin_client"
license = "AGPL-3.0-only"
readme = "README_rust.md"
keywords = ["katzenpost", "cryptography", "sphinx", "mixnet"]
[dependencies]
libc = "0.2.152"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_cbor = "0.11"
blake2 = "0.10"
log = "0.4"
env_logger = "0.11"
hex = "0.4"
tokio = { version = "1", features = ["full"] }
generic-array = "0.14.0"
typenum = "1.16"
toml = "0.8"