-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (64 loc) · 2.23 KB
/
Cargo.toml
File metadata and controls
76 lines (64 loc) · 2.23 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 = "tw"
version = "0.1.0"
edition = "2024"
[profile.release]
panic = "unwind" # Change from "abort"
debug = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
env_logger = "0.11"
sqlx = { version = "0.8", features = [ "runtime-tokio-rustls", "postgres", "chrono", "uuid", "json"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots"] }
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
governor = "0.6"
rand = "0.9"
chrono = { version = "0.4", features = ["serde"]}
clap = { version = "4.5.16", features = ["derive"] }
moka = { version = "0.12", features = ["future", "futures-util", "sync"] }
indexmap = { version = "2", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
khronos_runtime = { git = "https://github.com/anti-raid/khronos" }
khronos_ext = { git = "https://github.com/anti-raid/khronos" }
dapi = { git = "https://github.com/anti-raid/khronos" }
vfs = { git = "https://github.com/Anti-Raid/rust-vfs", features = ["embedded-fs"] }
rust-embed = { version = "8.7.0", features = ["debug-embed", "interpolate-folder-path"] }
futures = "0.3"
dashmap = { version = "6", features = ["serde", "inline", "rayon"] }
tokio-util = { version = "0.7", features = ["time"] }
rmp-serde = { version = "1.3.1" }
rustyline = "15"
# http
axum = { version = "0.8.4", features = ["macros", "ws"] }
tower-http = { version = "0.5.2", features = ["trace", "cors"] }
# sandwich
serde_repr = "0.1"
# Mesophyll
tonic = "0.14"
tonic-prost = "0.14"
prost = "0.14"
prost-types = "0.14"
tokio-stream = "0.1"
# discord event gateway
stratum_client = { git = "https://github.com/anti-raid/stratum" }
stratum_common = { git = "https://github.com/anti-raid/stratum" }
bitflags = "2.11.0"
serde_bytes = "0.11.19"
# blob
hmac = "0.13.0"
sha2 = "0.11.0"
hex = "0.4.3"
[dependencies.tokio]
version = "1"
features = ["sync", "macros", "rt-multi-thread", "tracing", "process", "signal"]
[dependencies.serenity]
git = "https://github.com/Anti-Raid/serenity"
branch = "next"
features = ["model", "http", "cache", "rustls_backend", "unstable"]
[features]
default = []
[build-dependencies]
tonic-prost-build = "0.14"