-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (57 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
63 lines (57 loc) · 1.52 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
[package]
name = "Vex"
version = "0.1.0"
edition = "2024"
default-run = "Vex"
description = "High-performance Minecraft proxy with plugin support"
license = "MIT OR Apache-2.0"
repository = "https://github.com/pa-dej/Vex"
keywords = ["minecraft", "proxy", "network", "tokio", "vex"]
categories = ["game-engines", "network-programming"]
[[bin]]
name = "bench"
path = "src/bin/bench.rs"
[[bin]]
name = "mock_backend"
path = "src/bin/mock_backend.rs"
[dependencies]
anyhow = "1.0"
arc-swap = "1.7"
axum = "0.8"
aes = "0.8"
bytes = "1.10"
cfb-mode = "0.8"
clap = { version = "4", features = ["derive"] }
dashmap = "6.1"
flate2 = "1.1"
futures-util = "0.3"
hdrhistogram = "7"
hmac = "0.12"
http = "1.3"
libloading = "0.8"
notify = "6"
prometheus = "0.14"
redis = { version = "0.25", features = ["tokio-comp", "connection-manager"] }
rand = "0.8"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
rsa = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha1 = { version = "0.10", features = ["oid"] }
sha2 = "0.10"
thiserror = "2.0"
tokio = { version = "1.48", features = ["full"] }
toml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
sysinfo = "0.32"
uuid = { version = "1", features = ["v3"] }
vex-proxy-sdk = { version = "0.3.0", path = "vex-sdk", features = ["metrics"] }
[dev-dependencies]
tempfile = "3"
wiremock = "0.6"
[features]
default = []
integration = []
[workspace]
members = [".", "vex-sdk", "examples/hello_plugin"]