-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (47 loc) · 1.66 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (47 loc) · 1.66 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
[workspace]
members = ["crates/*", "tools/mysql2postgres"]
[package]
name = "ppanel-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
asynq = { version = "0.1", features = ["json"] }
anyhow = "1"
async-trait = "0.1"
axum = "0.8"
chrono = "0.4"
base64 = "0.22"
hex = "0.4"
jwt = { path = "crates/jwt" }
oauth = { path = "crates/oauth" }
password = { path = "crates/password" }
rand = "0.8"
redis = { version = "0.27", features = ["tokio-comp", "connection-manager"] }
result = { path = "crates/result" }
payment = { path = "crates/payment" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
serde_yaml = "0.9"
sqlx = { version = "0.9", features = ["runtime-tokio", "postgres", "mysql", "any", "chrono", "uuid", "migrate", "derive", "macros"] }
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-opentelemetry = "0.28"
opentelemetry = { version = "0.27", features = ["trace"] }
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio", "trace"] }
opentelemetry-otlp = { version = "0.27", features = ["grpc-tonic", "http-proto", "trace"] }
opentelemetry-stdout = { version = "0.27", features = ["trace"] }
opentelemetry-semantic-conventions = "0.27"
uuid = { version = "1", features = ["v4", "v5", "serde"] }
md5 = "0.7"
urlencoding = "2"
gtmpl = "0.7"
gtmpl_value = "0.5"
sms = { path = "crates/sms" }
email = { path = "crates/email" }
turnstile = { path = "crates/turnstile" }
reqwest = { version = "0.12", features = ["json"] }
migrate = { path = "crates/migrate" }