This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (66 loc) · 1.84 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
[package]
name = "tsunami"
version = "0.1.0"
edition = "2021"
[features]
openssl-vendored = ["openssl/vendored"]
[profile.release]
debug = 1
debuginfo-level = 1
lto = "thin"
[[bin]]
name = "ascella"
path = "src/main.rs"
[build-dependencies]
rosetta-build = { git = "https://github.com/Tricked-dev/rosetta" }
[dependencies]
actix-cors = "0.6.1"
actix-multipart = "0.4.0"
actix-web = "4.0.1"
strum = "0.24.0"
strum_macros = "0.24.0"
tokio = { version = "1.18.2", features = ["rt-multi-thread", "macros"] }
tokio-pg-mapper = "0.2.0"
tokio-pg-mapper-derive = "0.2.0"
tokio-postgres = "0.7.6"
anyhow = "1.0.57"
log = "0.4.17"
thiserror = "1.0.31"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
rosetta-i18n = { git = "https://github.com/Tricked-dev/rosetta" }
rust-embed = "6.4.0"
twilight-embed-builder = "0.11.0"
twilight-gateway = "0.11.0"
twilight-http = "0.11.0"
twilight-model = "0.11.0"
twilight-util = { version = "0.11.0", features = ["builder"] }
openssl = { version = "0.10.40", optional = true }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
async-trait = "0.1.53"
bitflags = "1.3.2"
byte-unit = "4.0.14"
bytes = "1.1.0"
cached = "0.34.0"
dotenv = "0.15.0"
futures = "0.3.21"
governor = "0.4.2"
humantime = "2.1.0"
lazy_static = "1.4.0"
once_cell = "1.11.0"
paperclip = { git = "https://github.com/paperclip-rs/paperclip", features = ["actix4", "actix-multipart"] }
paste = "1.0.7"
rand = "0.8.5"
reqwest = { version = "0.11.10", features = ["gzip", "brotli", "multipart"] }
rust-s3 = { version = "0.31.0", features = ["with-tokio", "tokio-native-tls", "tags"] }
tree_magic = "0.2.3"
ts-rs = "6.1.2"
ulid = "0.5.0"
validator = { version = "0.15.0", features = ["derive"] }
[dev-dependencies]
actix-test = "0.1.0-beta.13"
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "server"
harness = false