-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
51 lines (47 loc) · 1.05 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
[workspace]
resolver = "2"
members = [
"migration",
"entity",
"common",
"api",
"server",
"cli",
"storage",
"signature",
]
default-members = ["cli"]
[workspace.dependencies]
openubl-entity = { path = "./entity" }
openubl-common = { path = "./common" }
openubl-migration = { path = "./migration" }
openubl-storage = { path = "./storage" }
openubl-server = { path = "./server" }
openubl-api = { path = "./api" }
xhandler = { git = "https://github.com/project-openubl/xhandler-rust.git", branch = "main"}
sea-orm = "1.0.0"
sea-query = "0.31"
async-trait = "0.1.75"
anyhow = "1.0.76"
thiserror = "1.0.50"
serde_json = "1.x"
serde = "1.x"
clap = "4.4.11"
actix-web = "4.4.1"
log = "0.4.21"
tokio = "1.38.0"
env_logger = "0.11.5"
utoipa = "4.1.0"
utoipa-swagger-ui = "7.1.0"
actix-web-httpauth = "0.8.1"
actix-4-jwt-auth = "1.2.0"
actix-multipart = "0.7.2"
minio = "0.1.0"
uuid = "1.6.1"
zip = "2.1.6"
tempfile = "3.9.0"
reqwest = "0.11"
aws-sdk-s3 = "1.11.0"
aws-config = "1.1.1"
aws-smithy-runtime = "1.1.1"
aws-smithy-runtime-api = "1.1.1"