Skip to content

Commit e1f8a12

Browse files
committed
v0.10.0
1 parent adf480a commit e1f8a12

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,6 @@ lto = "fat"
8383
opt-level = 3
8484
panic = "abort"
8585
strip = true
86+
87+
[patch.crates-io]
88+
wreq = { git = "https://github.com/0x676e67/wreq", rev = "240d84eab5eb4df8548933ee2c13337d86e1afe1" }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# wreq-python
22

33
[![CI](https://github.com/0x676e67/wreq-python/actions/workflows/ci.yml/badge.svg)](https://github.com/0x676e67/wreq-python/actions/workflows/ci.yml)
4-
![GitHub License](https://img.shields.io/github/license/0x676e67/wreq-python?color=blue)
5-
![Python Version from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2F0x676e67%2Frnet%2Fmain%2Fpyproject.toml&logo=python)
4+
![PyPI - License](https://img.shields.io/pypi/l/wreq?color=blue)
5+
![Python Version from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2F0x676e67%2Fwreq-python%2Fmain%2Fpyproject.toml&logo=python)
66
[![PyPI](https://img.shields.io/pypi/v/wreq?logo=python)](https://pypi.org/project/wreq/)
77
[![Discord chat][discord-badge]][discord-url]
88

src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ struct Builder {
110110
/// Sets the maximum idle connection per host allowed in the pool.
111111
pool_max_idle_per_host: Option<usize>,
112112
/// Sets the maximum number of connections in the pool.
113-
pool_max_size: Option<u32>,
113+
pool_max_size: Option<usize>,
114114

115115
// ========= Protocol options =========
116116
/// Whether to use the HTTP/1 protocol only.

0 commit comments

Comments
 (0)