-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
82 lines (70 loc) · 1.56 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "ire"
description = "I2P router implementation in Rust"
version = "0.0.1"
license = "MIT"
authors = ["Jack Grigg <[email protected]>"]
homepage = "https://github.com/str4d/ire"
repository = "https://github.com/str4d/ire"
readme = "README.md"
categories = ["cryptography"]
keywords = ["i2p", "net", "network", "privacy", "security"]
edition = "2021"
rust-version = "1.64"
[dependencies]
arrayref = "0.3"
bloom-filter-rs = "0.1"
bytes = "0.4"
chrono = "0.4"
cookie-factory = "0.2"
data-encoding = "2.1"
flate2 = "1.0"
futures = "0.1"
i2p_snow = "0.5.1"
itertools = "0.10"
lazy_static = "1.0"
log = "0.4"
native-tls = "0.2"
nom = "7"
num-bigint = { version = "0.4", features = ["rand"] }
num-traits = "0.2"
rand_7 = { package = "rand", version = "0.7" }
rand = "0.8"
ring = "0.16.9"
siphasher = "0.3"
tokio = "0.1"
tokio-threadpool = "0.1"
tokio-tls = "0.2"
# AES-256
aes = "0.8"
cbc = "0.1"
# Signatures
ed25519-dalek = "1"
p256 = "0.12"
p384 = "0.12"
rsa = "0.8"
# Hash functions
sha1 = "0.10"
sha2 = "0.10"
# Reseeding
zip = { version = "0.6", default-features = false, features = ["deflate"] }
# Secret management
subtle = "2"
# Configuration
config = { version = "0.13", default-features = false, features = ["toml"] }
# CLI dependencies
clap = { version = "4", optional = true }
env_logger = { version = "0.10", optional = true }
[dev-dependencies]
pretty_assertions = "1.3"
tempfile = "3"
trycmd = "0.14"
[features]
cli = ["clap", "env_logger"]
nightly = []
[[bin]]
name = "ire"
required-features = ["cli"]
[[test]]
name = "cli_tests"
required-features = ["cli"]