-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
65 lines (61 loc) · 1.43 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
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
resolver = "2"
members = [
"mangadex-api-types",
"mangadex-api-schema",
"mangadex-api",
"mangadex-api-tests",
"mangadex-api-input-types",
]
default-members = ["mangadex-api"]
[workspace.dependencies]
syn = "2"
darling = "0.20"
proc-macro2 = "1"
quote = "1"
tokio = { version = "1", default-features = false }
serde_json = "1"
color-print = "0.3.6"
jsonxf = "1"
anyhow = "1"
derive_builder = "0.20"
reqwest = { version = "0.12", features = [
"cookies",
"json",
"multipart",
"rustls-tls",
] }
serde = { version = "1", features = ["derive"]}
thiserror = "2"
time = { version = "0.3", features = [
"serde-human-readable",
"large-dates",
"local-offset",
] }
url = { version = "2.5", features = ["serde"] }
uuid = { version = "1.8", features = ["serde", "v4"] }
async-graphql = "7"
specta = { version = "1", features = ["uuid", "url", "time"] }
futures = "0.3"
bytes = "1.6"
serde_urlencoded = "0.7"
clap = "4.5.4"
fake = "3.0.0"
async-stream = "0.3"
tokio-stream = "0.1"
getset = "0"
wiremock = "0.6"
serde_qs = "0.13"
[workspace.dependencies.mangadex-api-types]
package = "mangadex-api-types-rust"
path = "./mangadex-api-types"
version = "0.10"
default-features = false
[workspace.dependencies.mangadex-api-schema]
package = "mangadex-api-schema-rust"
path = "./mangadex-api-schema"
version = "0.10"
default-features = false
[workspace.dependencies.mangadex-api]
path = "../mangadex-api"
version = "3.4"