-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
54 lines (50 loc) · 1.21 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
[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.85"
version = "1.0.0"
[lib]
crate-type = ["cdylib"]
doc = false
name = "wreq_ruby"
[dependencies]
magnus = { version = "0.8", features = ["bytes"] }
rb-sys = { version = "0.9.110", default-features = false }
tokio = { version = "1.49.0", features = ["full"] }
wreq = { version = "6.0.0-rc.28", features = [
"query",
"form",
"json",
"socks",
"stream",
"cookies",
"charset",
"gzip",
"brotli",
"deflate",
"zstd",
] }
wreq-util = "3.0.0-rc.10"
serde = { version = "1.0", features = ["derive"] }
serde_magnus = "0.10.0"
indexmap = { version = "2.12.1", features = ["serde"] }
cookie = "0.18"
bytes = "1.10.1"
arc-swap = "1.7.0"
http = "1.4.0"
http-body-util = "0.1.3"
futures-util = { version = "0.3.31", default-features = false }
percent-encoding = "2"
[build-dependencies]
rb-sys-env = "0.2.2"
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = "fat"
opt-level = 3
strip = true