-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (58 loc) · 1.53 KB
/
Copy pathCargo.toml
File metadata and controls
64 lines (58 loc) · 1.53 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
[package]
name = "wreq-ruby"
description = "Ruby bindings for Wreq, HTTP client library in Rust."
authors = ["SearchApi <support@searchapi.io>"]
homepage = "https://github.com/SearchApi/wreq-ruby"
repository = "https://github.com/SearchApi/wreq-ruby"
edition = "2024"
rust-version = "1.97"
version = "1.2.4"
[lib]
crate-type = ["cdylib"]
doc = false
name = "wreq_ruby"
[dependencies]
magnus = { version = "0.8.2", features = ["bytes"] }
rb-sys = { version = "0.9.128", default-features = false }
tokio = { version = "1.53.1", features = ["full"] }
wreq = { version = "6.0.0-rc", features = [
"query",
"form",
"json",
"socks",
"stream",
"cookies",
"charset",
"gzip",
"brotli",
"deflate",
"zstd",
] }
wreq-util = { version = "3.0.0-rc", features = ["emulation-compression"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_ignored = "0.1.14"
serde_json = { version = "1.0.151", features = [
"arbitrary_precision",
"preserve_order",
] }
serde_path_to_error = "0.1.20"
indexmap = { version = "2.14.0", features = ["serde"] }
cookie = "0.18.1"
bytes = "1.12.1"
arc-swap = "1.9.1"
http = "1.4.1"
http-body-util = "0.1.4"
futures-util = { version = "0.3.33", default-features = false }
[target.'cfg(unix)'.dependencies]
forkguard = { version = "0.1.3", features = ["atfork"] }
[dev-dependencies]
magnus = { version = "0.8.2", features = ["embed"] }
[build-dependencies]
rb-sys-env = "0.2.2"
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = "fat"
opt-level = 3
strip = true