-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
91 lines (70 loc) · 1.63 KB
/
Cargo.toml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[package]
name = "webxr-graph"
version = "0.1.0"
edition = "2021"
[dependencies]
# Actix Framework
actix = "0.13"
actix-web = { version = "4.0", features = ["rustls"] }
actix-web-actors = "4.1"
actix-files = "0.6"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Asynchronous Runtime
tokio = { version = "1.0", features = ["full"] }
tokio-stream = "0.1"
# HTTP Client and Types
reqwest = { version = "0.11", features = ["json", "stream"] }
http = "0.2"
bytestring = "1.3"
# Compression
miniz_oxide = "0.7"
# Logging and Error Handling
log = "0.4"
env_logger = "0.10"
thiserror = "1.0"
anyhow = "1.0"
# Time and Dates
chrono = { version = "0.4", features = ["serde"] }
# Environment Configuration
dotenv = "0.15"
config = { version = "0.13", features = ["toml"] }
# Regular Expressions
regex = "1.5"
# Markdown Processing
pulldown-cmark = "0.9"
# Asynchronous Traits
async-trait = "0.1"
# Additional Utilities
futures = "0.3"
lazy_static = "1.4"
once_cell = "1.17"
rand = "0.8"
rayon = "1.5"
bytes = "1.0"
# Rustls for TLS
rustls = "0.20"
rustls-pemfile = "1.0"
# SHA1 Hashing
sha1 = "0.10.5"
# GPU Computing
wgpu = "0.15"
bytemuck = { version = "1.12", features = ["derive"] }
# Intrusive Futures
futures-intrusive = "0.4"
# WebSockets and Async Dependencies
tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
tungstenite = { version = "0.20", features = ["native-tls"] }
# Audio Handling
rodio = "0.17"
# URL Parsing
url = "2.3"
# Base64 Encoding/Decoding
base64 = "0.21"
# Development Dependencies
[dev-dependencies]
mockall = "0.11"
tempfile = "3.2"
tokio-test = "0.4"
wiremock = "0.5"