-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
74 lines (69 loc) · 1.61 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
[workspace]
resolver = "3"
members = [
"mangadex-api-types",
"mangadex-api-schema",
"mangadex-api",
"mangadex-api-tests",
"mangadex-api-input-types", "mangadex-api-wasm-test",
]
default-members = ["mangadex-api"]
[workspace.dependencies]
syn = "2"
darling = "0.23"
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.13", default-features = false, features = [
"http2",
"charset",
"system-proxy",
"cookies",
"json",
"multipart"
] }
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"] }
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 = "5.0.0"
async-stream = "0.3"
tokio-stream = "0.1"
getset = "0"
wiremock = "0.6"
serde_qs = "1.0"
non-exhaustive = "0.1"
wasm-bindgen = "0.2"
log = "0.4"
[workspace.dependencies.mangadex-api-types]
package = "mangadex-api-types-rust"
path = "./mangadex-api-types"
version = "1"
default-features = false
[workspace.dependencies.mangadex-api-schema]
package = "mangadex-api-schema-rust"
path = "./mangadex-api-schema"
version = "1"
default-features = false
[workspace.dependencies.mangadex-api]
path = "./mangadex-api"
version = "4"
[workspace.package]
edition = "2024"
rust-version = "1.92"