-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (55 loc) · 2.63 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (55 loc) · 2.63 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
[workspace]
members = ["components/*", "cmd/*"]
exclude = [
"components/auto_api",
"cmd/schedulerwithworker",
"cmd/scheduler",
"cmd/vmworker",
"cmd/webapi",
"cmd/discordbroker",
]
resolver = "2"
[workspace.dependencies]
metrics = "0.23"
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4.0"
tracing = "0.1"
tracing-futures = { version = "0.2.5" }
async-trait = "0.1"
reqwest = { version = "0.12.2", features = ["json", "stream"] }
tokio = { version = "1.35.1", features = ["full"] }
thiserror = "1.0"
clap = { version = "4.1.4", features = ["derive", "env"] }
anyhow = "1.0"
deno_core = "0.283"
axum = { version = "0.8", features = ["ws", "multipart", "macros"] }
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
futures-util = "0.3"
url = "2.2"
tracing-log = "0.2"
uuid = { version = "1.7.0", features = ["v4", "serde"] }
regex = "1.10"
oauth2 = "4.4.2"
schemars = { version = "0.9", features = ["chrono04", "uuid1"] }
image = { version = "0.25.1", git = "https://github.com/image-rs/image.git", rev = "6e73a1780b659987acff81849b22a0257da47069" }
base64-simd = "0.8.0"
twilight-model = { version = "0.17.1", git = "https://github.com/LittleEngineer/twilight.git", rev = "6d1586d3b77f3c01471765e29ca29224829fed81" }
twilight-http = { version = "0.17.1", features = [
"rustls-platform-verifier",
], git = "https://github.com/LittleEngineer/twilight.git", rev = "6d1586d3b77f3c01471765e29ca29224829fed81" }
twilight-gateway = { version = "0.17.1", git = "https://github.com/LittleEngineer/twilight.git", rev = "6d1586d3b77f3c01471765e29ca29224829fed81" }
twilight-cache-inmemory = { version = "0.17.1", git = "https://github.com/LittleEngineer/twilight.git", rev = "6d1586d3b77f3c01471765e29ca29224829fed81" }
twilight-util = { version = "0.17.0", features = [
"permission-calculator",
], git = "https://github.com/LittleEngineer/twilight.git", rev = "6d1586d3b77f3c01471765e29ca29224829fed81" }
twilight-validate = { version = "0.17.0", git = "https://github.com/LittleEngineer/twilight.git", rev = "6d1586d3b77f3c01471765e29ca29224829fed81" }
# twilight-model = { version = "0.16.0", path = "../forklight/twilight-model" }
# twilight-http = { version = "0.16.0", path = "../forklight/twilight-http" }
# twilight-gateway = { version = "0.16.0", path = "../forklight/twilight-gateway" }
# twilight-cache-inmemory = { version = "0.16.0", path = "../forklight/twilight-cache-inmemory" }
# twilight-util = { version = "0.16.0", features = [
# "permission-calculator",
# ], path = "../forklight/twilight-util" }
# twilight-validate = { version = "0.16.0", path = "../forklight/twilight-validate" }