-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (49 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
65 lines (49 loc) · 1.04 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
[package]
name = "dev-tools"
version = "0.3.0"
edition = "2024"
[dependencies]
# Web framework
axum = "0.8"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["cors", "fs"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
# Markdown rendering
comrak = "0.36"
# HTTP client for translation API
reqwest = { version = "0.12", features = ["json"] }
urlencoding = "2"
# Base64 for subscription conversion
base64 = "0.22"
# YAML parsing for Clash subscriptions
serde_yaml = "0.9"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# Hash & Crypto
sha1 = "0.10"
sha2 = "0.10"
md-5 = "0.10"
hmac = "0.12"
aes-gcm = "0.10"
hex = "0.4"
# JWT
jsonwebtoken = "9"
# XML
quick-xml = "0.31"
# CSV
csv = "1"
# UUID
uuid = { version = "1", features = ["v4", "v7"] }
# Random
rand = "0.8"
# Regex
regex = "1"
[dev-dependencies]
http-body-util = "0.1"
tower = { version = "0.5", features = ["util"] }