-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (60 loc) · 1.77 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (60 loc) · 1.77 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
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
#workspace = { members = ["boxxy"] }
[package]
name = "oxxy"
description = "A Loki Proxy written in rust with pluggable auth backends (and friends)"
authors = ["Gabe <gmp@gmp.io>"]
version = "0.1.0"
edition = "2021"
license = "GPL-3"
keywords = ["loki", "proxy"]
categories = ["command-line-interface", "command-line-utilities", "network-programming"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.8.1" ,features = ["macros"]}
http = "1.1.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.39", features = ["rt", "macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.18"
hyper = "1.4.1"
tower = "0.4.13"
tracing = "0.1.40"
hyper-util = { version = "0.1.7", features = ["client", "client-legacy"] }
clap = { version = "4.4", features = ["derive"] }
clap_derive = { version = "4.4" }
env_logger = "0.11.5"
lapin = { version = "2.5.0", features = ["codegen"] }
log = "0.4.22"
anyhow = "1.0.86"
async-std = { version = "1", features = ["attributes", "tokio1"] }
http-body-util = "0.1.2"
paho-mqtt = "0.13.3"
futures-lite = "2.3.0"
iroh = { version = "0.35.0", optional = true, features = ["discovery-local-network"] }
iroh-blobs = { version = "0.35.0" , optional = true}
rand = "0.8.5"
[features]
default = ["iroh-support"]
iroh-support = ["iroh", "iroh-blobs"]
[[bin]]
name = "loxxy"
path = "src/loxxy/main.rs"
required-features = ["iroh-support"]
[[bin]]
name = "moxxy"
path = "src/moxxy/main.rs"
[[bin]]
name = "roxxy"
path = "src/roxxy/main.rs"
[[bin]]
name = "toxxy"
path = "src/toxxy/main.rs"
[[bin]]
name = "ioxxy"
path = "src/ioxxy/main.rs"
[[bin]]
name = "ioxxy-ctl"
path = "src/ioxxy/ctl.rs"
[lints.clippy]
upper_case_acronyms = "allow"