-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (63 loc) · 1.55 KB
/
Cargo.toml
File metadata and controls
76 lines (63 loc) · 1.55 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
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "pactum-codex"
version = "0.1.0"
edition = "2021"
[dependencies]
# Web framework
axum = { version = "0.7", features = ["multipart", "ws"] }
axum-extra = { version = "0.9", features = ["cookie"] }
async-trait = "0.1"
http = "1"
tokio = { version = "1", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
tower_governor = "0.4"
# Database
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-rustls-ring-webpki",
"postgres",
"uuid",
"chrono",
"migrate",
]}
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Auth
jsonwebtoken = "9"
oauth2 = "4"
# Crypto
aes-gcm = "0.10"
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
# Solana
solana-client = "3.1.9"
solana-sdk = "4.0.1"
spl-token = "9.0.0"
spl-associated-token-account = "8.0.0"
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
dotenvy = "0.15"
config = "0.14"
base64 = "0.22"
dashmap = "6"
rand = "0.8"
# HTTP client (OAuth, IPFS, Arweave)
reqwest = { version = "0.12", features = ["json", "multipart"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Email
resend-rs = "0.8"
# Additional deps needed by implementation
thiserror = "2"
borsh = { version = "1", features = ["derive"] }
ed25519-dalek = { version = "2.1", features = ["serde"] }
bincode = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1