-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (46 loc) · 1.7 KB
/
Cargo.toml
File metadata and controls
56 lines (46 loc) · 1.7 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
[package]
name = "custom"
version = "0.1.0"
edition = "2024"
[dependencies]
twilight-gateway = { version = "0.16", optional = true }
twilight-model = "0.16"
twilight-http = "0.16"
twilight-util = { version = "0.16", features = ["full"] }
twilight-validate = "0.16"
serde_urlencoded = { version = "0.7", optional = true }
serde_json = "1.0"
serde_repr = "0.1"
serde = "1.0"
futures-util = "0.3"
tokio = "1.43"
tokio-stream = "0.1"
tracing = { version = "0.1", features = ["std"] }
tracing-subscriber = { version = "0.3", features = ["env-filter","registry", "std", "fmt"] }
opentelemetry_sdk = "0.30"
opentelemetry-appender-tracing = "0.30"
tracing-opentelemetry = "0.31"
opentelemetry = { version = "0.30", features = ["trace"] }
opentelemetry-otlp = { version = "0.30", features = ["http-proto", "grpc-tonic"] }
mongodb = "3.2"
redis = { version = "0.29", features = ["aio", "tokio-comp"] }
tokio-websockets = "0.11"
humantime = "2.1"
chrono = "0.4"
ed25519-dalek = { version = "2.1", optional = true }
dotenv = "0.15"
reqwest = { version = "0.12" }
regex = { version = "1.5", optional = true }
dashmap = "5.2"
hex = { version = "0.4", optional = true }
warp = { version = "0.3", optional = true }
rusty_paseto = { version = "0.7", features = ["core", "v4_local"], optional = true }
anyhow = { version = "1.0", optional = true }
json-patch = { version = "4.0", optional = true }
[features]
all = ["custom-clients", "tasks", "http-interactions", "api", "gateway"]
custom-clients = []
tasks = []
http-interactions = ["dep:warp", "dep:hex", "dep:anyhow", "dep:ed25519-dalek"]
gateway = ["dep:regex", "dep:twilight-gateway"]
api = ["dep:warp", "dep:rusty_paseto", "dep:serde_urlencoded", "dep:anyhow", "dep:json-patch", "reqwest/json"]