-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (44 loc) · 1.19 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
[package]
name = "yggdrasil-rs-server"
description = ""
version = "1.0.0"
edition = "2021"
build = "build.rs"
[workspace]
members = [".", "migration"]
[dependencies]
#tracing
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "chrono"] }
tracing-appender = "0.2.3"
#web
axum = { version = "0.7.5", features = ["multipart"] }
tower-http = { version = "0.5.2", features = ["catch-panic", "trace", "cors", "set-header"] }
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
#serde
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
serde-inline-default = "0.2.0"
toml = "0.8.14"
#database
migration = {path = "migration"}
sea-orm = { version = "0.12.15", features = ["macros", "sqlx-postgres", "runtime-tokio-rustls"] }
moka = { version = "0.12.8", features = ["future"] }
#algorithm
pbkdf2 = "0.12.2"
sha2 = "0.10.8"
base64 = "0.22.1"
uuid = { version = "1.9.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
rsa = "0.6.1"
sha1 = "0.10.6"
#tools
lazy_static = "1.5.0"
tokio = "1.38.0"
futures = "0.3.30"
rand = "0.8.5"
chrono = "0.4.38"
log = "0.4.22"
image = "0.25.1"
shadow-rs = "0.30.0"
[build-dependencies]
shadow-rs = "0.30.0"