-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.04 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
[package]
name = "allium"
version = "0.1.3"
authors = [
"Dominik Stolz <[email protected]>",
"Oliver Jacobsen <[email protected]>"
]
license = "MIT"
description = "Allium is a Rust library for onion routing."
repository = "https://github.com/tum-taskforce/allium"
categories = ["network-programming"]
edition = "2021"
exclude = [
"daemon/*",
"docs/*",
"*.ini",
"*.pem",
]
[workspace]
members = ["daemon"]
[features]
crypto_ring = ["ring", "base64", "once_cell"]
[dependencies]
tokio = { version = "1.37", features = ["io-util", "net", "sync", "time", "rt", "macros"] }
tokio-stream = "0.1"
ring = { version = "0.16.15", features = ["std"], optional = true }
openssl = { version = "0.10" }
anyhow = "1.0"
thiserror = "1.0"
base64 = { version = "0.22", optional = true }
once_cell = { version = "1.19.0", optional = true }
bytes = "1.6"
log = "0.4"
[dev-dependencies]
tokio = { version = "1.37", features = ["full"] }
pretty_env_logger = "0.5"
[patch.crates-io]
ring = { git = "https://github.com/voidc/ring", branch = "open-no-tag" }