-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (42 loc) · 1.22 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
[package]
name = "backend_server"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.107"
serde = "1.0.189"
mongodb = "2.7.0"
chrono = "0.4.31"
rand = "0.8.5"
rand_core = { version = "0.6.4", features = ["std"] }
lazy_static = "1.4.0"
base64 = "0.21.4"
jwt-simple = "0.11.7"
shadow-rs = "0.24.1"
urlencoding = "2.1.3"
hyper = { version = "0.14.27", features = ["full"] }
regex = "1.10.2"
hyper-tls = "0.5.0"
pcre2 = "0.2.5"
url_encoded_data = "0.6.1"
rustls-pemfile = "1.0.3"
tokio = { version = "1.33.0", features = ["full"] }
bson = { version = "2.7.0", features = ["chrono-0_4"] }
futures-util = "0.3.28"
prettytable-rs = "0.10.0"
md-5 = "0.10.6"
serde-inline-default = "0.1.1"
toml = "0.8.2"
futures = "0.3.28"
amqprs = {version = "1.5.0", features = ["urispec", "tls"] }
axum = "0.6.20"
rustls = "0.21.7"
axum-server = { version = "0.5.1" , features = ["tls-rustls"]}
tower-http = { version = "0.4.4", features = ["catch-panic", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-appender = "0.2.2"
[build-dependencies]
embed-resource = "2.4.0"
shadow-rs = "0.24.1"