-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (45 loc) · 1.36 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
[package]
name = "wiki"
description = "Library for interacting with MediaWiki APIs"
repository = "https://github.com/fee1-dead/wiki"
license = "Apache-2.0 OR MIT"
version = "0.0.4"
edition = "2021"
[workspace]
members = ["wikiproc", "mwget", "scannerbot", "abuselog_analyzer"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.12.7", features = ["json", "multipart", "gzip", "stream"], default-features = false }
bytes = "1"
serde = { version = "1", features = ["derive"] }
serde_urlencoded = "0.7.1"
serde_json = "1"
url = "2"
thiserror = "1"
wikiproc = { path = "./wikiproc", version = "0.0.1" }
bytemuck = { version = "1", features = ["derive"] }
urlencoding = "2"
futures-util = { version = "0.3.21", features = ["io"] }
pin-project = "1.0.10"
bitflags = "2.6.0"
chrono = "0.4.19"
async-sse = "5.1.0"
http-types = "2.12.0"
tracing = "0.1.35"
[build-dependencies]
skeptic = "0.13"
[dev-dependencies]
skeptic = "0.13"
tokio = { version = "1", features = ["full"] }
tokio-test = { version = "0.4.2" }
criterion = "0.5.1"
reqwest = { version = "0.12.7", features = ["json", "multipart", "gzip", "stream", "rustls-tls"], default-features = false }
[features]
default = ["reqwest/cookies"]
[[bench]]
name = "make_url"
harness = false
[profile.bench]
lto = "fat"
opt-level = 3
debug-assertions = false