-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (44 loc) · 1.29 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
[package]
name = "oxxy"
description = "A Loki Proxy written in rust with pluggable auth backends (and friends)"
authors = ["Gabe <[email protected]>"]
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 = "0.7.5"
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.12.5"
futures-lite = "2.3.0"
[[bin]]
name = "loxxy"
path = "src/loxxy/main.rs"
[[bin]]
name = "moxxy"
path = "src/moxxy/main.rs"
[[bin]]
name = "roxxy"
path = "src/roxxy/main.rs"
[[bin]]
name = "toxxy"
path = "src/toxxy/main.rs"