forked from sxhxliang/mcp-access-point
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.35 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
[package]
name = "access-point"
version = "0.1.4"
edition = "2021"
[dependencies]
clap = {version = "4.5.35", features = ["derive"] }
bytes = "1.8.0"
base64 = "0.22.1"
serde = "1.0.219"
serde_json = "1.0.133"
serde_yaml = "0.9.34"
serde-transcode = "1.1.1"
async-trait="0.1.88"
pingora = { version = "0.8.0", features = ["openssl", "sentry"] }
pingora-core = "0.8.0"
pingora-error = "0.8.0"
pingora-http = "0.8.0"
pingora-limits = "0.8.0"
pingora-load-balancing = "0.8.0"
pingora-proxy = "0.8.0"
pingora-runtime = "0.8.0"
hickory-resolver = "0.24.1"
http = "1.3.1"
ipnetwork = { version = "0.20.0", features = ["serde"] }
jsonwebtoken = "9.3.1"
async-stream = "0.3.6"
futures = "0.3.31"
chrono = "0.4.40"
validator = { version = "0.20.0", features = ["derive"] }
matchit = "0.8.4"
rand = "0.9"
url = "2"
regex = "1.11.1"
once_cell = "1.21.3"
arc-swap = "1.7.1"
dashmap = "6.1.0"
uuid = { version = "1.16.0", features = ["v4"] }
tokio = { version = "1.44.2", features = ["fs"] }
env_logger = { version = "0.11.8", features = ["unstable-kv"] }
log = { version = "0.4.22", features = ["kv"] }
notify = "8.0"
sentry = "0.36"
prometheus = "0.13.4"
etcd-client = "0.16.1"
reqwest = { version = "0.12", features = ["json", "blocking"] }
urlencoding = "2.1.3"
ureq = { version = "2.9.7", default-features = true }
[profile.release]
codegen-units = 1
lto = true
strip = "debuginfo"