-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1.22 KB
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
37
38
39
40
41
42
43
44
45
[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_bytes = "0.11"
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"
rusqlite = { version = "0.38.0", features = ["bundled"] }
base64 = "0.22"
async-trait = "0.1"
thiserror = "1"
clap = { version = "4.5", features = ["derive"], optional = true }
tempfile = { version = "3", optional = true }
[dev-dependencies]
assert_cmd = "2"
[features]
cli = ["dep:clap", "dep:tempfile"]
[[bin]]
name = "pigeonhole-cp"
path = "src/bin/pigeonhole_cp.rs"
required-features = ["cli"]