-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (87 loc) · 2.1 KB
/
Cargo.toml
File metadata and controls
97 lines (87 loc) · 2.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[workspace]
resolver = "2"
members = [
"crates/api_structure",
"crates/apiv2",
"crates/db",
"crates/event-runner",
"crates/export",
"crates/helper",
"crates/manga-scraper",
"crates/scrape-modules/*",
"crates/scraper-module",
"crates/scraper-testing",
"crates/search-parser",
"crates/storage",
]
exclude = ["crates/api", "frontend"]
[workspace.package]
edition = "2021"
version = "0.1.0"
[workspace.dependencies]
api_structure = { path = "crates/api_structure" }
manga-scraper = { path = "crates/manga-scraper" }
scraper-testing = { path = "crates/scraper-testing" }
event-runner = { path = "crates/event-runner" }
export = { path = "crates/export" }
storage = { path = "crates/storage" }
db = { path = "crates/db" }
helper = { path = "crates/helper" }
scraper = { version = "0.25" }
scraper-module = { path = "crates/scraper-module" }
regex = "1.12"
# shared
url = "2"
serde_json = "1"
chrono = "0.4"
schemars = { package = "apistos-schemars", version = "0.8" }
apistos = "0.6"
tokio = "1.49"
async-trait = "0.1"
### backend
actix-web = "4" #framework
actix-cors = "0.7" # cors
actix-files = "0.6"
actix-multipart = "0.7.2"
futures-util = "0.3"
tokio-util = "0.7"
futures = "0.3.31"
openssl = "0.10" # https
image = "0.25" # image
base64 = "0.22.1"
# logger
fern = "0.7"
log = "0.4"
humantime = "2"
#jwt
jsonwebtoken = "9.3"
bcrypt = "0.17.0"
actix-web-grants = "4.1"
actix-web-httpauth = "0.8"
reqwest = { version = "0.12", features = ["json"] }
surrealdb-extras = "2.0.10"
# config
toml = "0.8"
rand = "0.9" # generate unique id in config
local-ip-address = "0.6" # logging
# shared
dashmap = "6.1.0"
async-tempfile = "0.7.0"
serde = "1"
anyhow = "1.0"
urlencoding = { version = "2.1" }
surrealdb = "2.6.0"
infer = "0.19.0"
img_hash = { git = "https://github.com/ManReadApp/img_hash" }
uuid = "1.20.0"
bytes = "1.11.1"
futures-core = "0.3.31"
mime = "0.3.17"
aes-gcm = "0.10.3"
pin-project-lite = "0.2.16"
prost = "0.14.3"
prost-build = { version = "0.14" }
prost-types = { version = "0.14" }
mime_guess = "2.0.5"
[profile.dev.package.image]
opt-level = 3