-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (87 loc) · 3.26 KB
/
Cargo.toml
File metadata and controls
89 lines (87 loc) · 3.26 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
[workspace]
resolver = "2"
members = [
"crates/api/baidu",
"crates/api/caiyun",
"crates/api/chatgpt",
"crates/api/deepl",
"crates/api/deepseek",
"crates/api/gemini",
"crates/api/google",
"crates/api/groq",
"crates/api/mymemory",
"crates/scrape/papago",
"crates/api/youdao",
"crates/dummy/none",
"crates/dummy/original",
"crates/interface",
"crates/lang-generator",
"crates/offline/jparacrawl",
"crates/offline/m2m100",
"crates/offline/mbart50",
"crates/offline/nllb",
"crates/offline/sugoi",
"crates/offline/qwen2",
"crates/aio-translator",
"crates/detector/langid",
"crates/detector/whatlang",
"crates/detector/lingua",
]
[workspace.package]
edition = "2024"
version = "1.0.0"
[workspace.dependencies]
interface-model = { git = "https://github.com/frederik-uni/manga-image-translator-rust", branch = "master", default-features = false }
base-util = { git = "https://github.com/frederik-uni/manga-image-translator-rust", branch = "master", default-features = false }
reqwest = "0.12"
anyhow = "1.0"
tokio = "1.47"
scraper = "0.24"
aio-translator-lang-generator = { path = "crates/lang-generator", version = "1.0.0" }
aio-translator-interface = { path = "crates/interface", version = "1.0.0" }
aio-translator-jparacrawl = { path = "crates/offline/jparacrawl", version = "1.0.0" }
aio-translator-m2m100 = { path = "crates/offline/m2m100", version = "1.0.0" }
aio-translator-nllb = { path = "crates/offline/nllb", version = "1.0.0" }
aio-translator-sugoi = { path = "crates/offline/sugoi", version = "1.0.0" }
aio-translator-none = { path = "crates/dummy/none", version = "1.0.0" }
aio-translator-original = { path = "crates/dummy/original", version = "1.0.0" }
aio-translator-langid = { path = "crates/detector/langid", version = "1.0.0" }
aio-translator-whatlang = { path = "crates/detector/whatlang", version = "1.0.0" }
aio-translator-lingua = { path = "crates/detector/lingua", version = "1.0.0" }
aio-translator-deepl = { path = "crates/api/deepl", version = "1.0.0" }
aio-translator-papago = { path = "crates/scrape/papago", version = "1.0.0" }
aio-translator-mymemory = { path = "crates/api/mymemory", version = "1.0.0" }
aio-translator-caiyun = { path = "crates/api/caiyun", version = "1.0.0" }
aio-translator-google = { path = "crates/api/google", version = "1.0.0" }
aio-translator-baidu = { path = "crates/api/baidu", version = "1.0.0" }
aio-translator-mbart50 = { path = "crates/offline/mbart50", version = "1.0.0" }
aio-translator-youdao = { path = "crates/api/youdao", version = "1.0.0" }
serde_json = "1.0"
serde = "1.0"
md5 = "0.8.0"
thiserror = "2.0"
async-trait = "0.1"
zip = "5.1"
ct2rs = { git = "https://github.com/frederik-uni/ctranslate2-rs", default-features = false, branch = "use-with-dynamic-linking" }
maplit = "1.0.2"
bytemuck = "1.23"
env_logger = "0.11.8"
heck = "0.5.0"
regex = "1.11"
rust_tokenizers = "8.1.1"
lingua-rs = { package = "lingua", version = "1.7.2" }
whatlang-rs = { package = "whatlang", version = "0.16.4" }
langid-rs = "1.1.0"
tokenizers = "0.22"
hmac = "0.12.1"
base64 = "0.22.1"
serde_urlencoded = "0.7.1"
uuid = "1.18"
md-5 = "0.10.6"
dotenv = "0.15.0"
hex = "0.4.3"
rand = "0.9.2"
sha2 = "0.10.9"
arabic_reshaper = "0.4.2"
fancy-regex = "0.16"
async-scoped = { version = "0.9.0" }