-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (46 loc) · 1.31 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
[workspace]
members = [
"./crates/misc/*",
"./crates/core/",
"./crates/manager",
"crates/core",
"crates/emdx",
]
default-members = ["./crates/manager"]
resolver = "2"
[workspace.dependencies]
id_list_txt_reader = { path = "./crates/misc/id_list_txt_reader" }
mangadex-desktop-api2 = { path = "./crates/manager" }
api-core = { path = "./crates/core", package = "mangadex-desktop-api2-core" }
reqwest = { version = "0.12", features = [
"cookies",
"json",
"multipart",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
uuid = { version = "1.8", features = ["serde", "v4"] }
url = { version = "2.5", features = ["serde"] }
mangadex-api = { version = "3.3", default-features = false, features = [
"rw-multi-thread",
"utils",
"serialize",
] }
serde_json = { version = "1.0" }
mangadex-api-schema-rust = { version = "0.9", default-features = false, features = [
"serialize",
] }
mangadex-api-types-rust = { version = "0.9", default-features = false }
tokio = { version = "1.37", features = ["sync", "rt"] }
log = "^0.4.21"
tokio-stream = { version = "0.1" }
bytes = { version = "1.6" }
itertools = "0"
mangadex-api-input-types = { version = "0.5" }
actix = "0.13"
regex = "1"
rand = { version = "0" }
ciborium = { version = "0" }
zstd = "0.13.2"
tar = "0.4.41"