quininer
47640170bb
Add tcp_nodelay for Builder
2019-03-20 14:09:31 -07:00
quininer
f5e7e883c7
disable nagle algorithm for TLS handshake
2019-03-20 14:09:31 -07:00
CJP10
a54bfc1a39
added max_idle_per_host as an option to the builder ( #473 )
2019-03-19 13:23:32 -07:00
quininer
3554b0ad26
replace libflate with flate2 ( #476 )
2019-03-19 13:21:43 -07:00
Frank Benkstein
08847cc9f5
add bearer auth to async RequestBuilder ( #475 )
2019-03-13 11:00:54 -07:00
quininer
a27db28deb
fix proxy missing alpn ( #466 )
...
* fix #459
* disable alpn for proxy connection
2019-03-06 11:02:55 -08:00
Sean McArthur
d7475d61f2
v0.9.11
2019-03-04 11:41:54 -08:00
Ian Smith
215981e7a0
Add percent_encode_noop configuration to Form ( #467 )
...
Some implementations of multipart/form parsing don't support alternate
encodings, but do allow unicode in 'standard' parameter values. This
change allows users to specify that they do not want to encode
parameters.
(See also: #419 , #420.)
2019-03-04 11:21:35 -08:00
Antoine Carton
aa8348ba1e
Add http1_title_case_headers option to ClientBuilder ( #463 )
2019-02-27 13:21:50 -08:00
Constantin Nickel
4fba983e5e
async/client: return a impl Future on execute()
2019-02-20 17:59:12 -08:00
Sean McArthur
cd0e4b3c2e
Add Error::is_timeout() accessor
2019-02-20 15:15:55 -08:00
Sean McArthur
9e2b56ba56
Add connect_timeout to async and sync clients
2019-02-20 15:15:55 -08:00
Sean McArthur
66db8d6283
refactor connect_async module into connect module
2019-02-20 15:15:55 -08:00
Sean McArthur
5deb5705f5
v0.9.10
2019-02-18 11:54:14 -08:00
Manuel Alejandro
f96f9454fd
Fixing Identity::from_pem which was failing when there was a PKCS1 RSA private key but not PKCS8 key ( #458 )
2019-02-16 12:30:18 -08:00
Michael Habib
e49f5ee404
add Response::error_for_status_ref to allow borrowing ( #457 )
2019-02-15 14:33:18 -08:00
Luca Bruno
0c84e6b9e9
async/request: add a basic example for send()
2019-02-15 10:33:57 -08:00
Luca Bruno
8b62f47ac3
async/request: return a impl Future on send()
2019-02-15 10:33:57 -08:00
Luca Bruno
5e38b419f0
async/reponse: return a impl Future on json()
2019-02-15 10:33:57 -08:00
Sean McArthur
7eae51f56e
add form-urlencoded unit test
2019-02-13 11:46:12 -08:00
Michael Habib
4dc679d535
Add ClientBuilder::local_address option to bind to a local IP address ( #451 )
...
Closes #414
2019-02-11 10:40:16 -08:00
Guus
8ed9e60351
Correcting 404 on example/simple.rs ( #449 )
2019-01-28 10:14:59 -08:00
Sean McArthur
d2eee8591a
v0.9.9
2019-01-23 12:20:44 -08:00
Sean McArthur
a9b79a8e30
pick up hyper and http patches
2019-01-23 12:18:03 -08:00
Sean McArthur
cf33fc907c
Document the multipart module
...
Closes #444
2019-01-23 12:16:12 -08:00
quininer
b37e67b865
update rustls ( #447 )
2019-01-23 09:14:02 -08:00
Evan Schwartz
6e8e781f8f
Add ClientBuilder::h2_prior_knowlege() ( #443 )
...
resolves https://github.com/seanmonstar/reqwest/issues/413
2019-01-18 14:15:57 -08:00
Sean McArthur
021851afd4
Enable h2 ALPN with rustls-tls backend
2019-01-18 11:53:56 -08:00
Sean McArthur
68e98d54ea
Add Response::content_length() method
2019-01-18 11:42:27 -08:00
Sean McArthur
c7dc8851a3
remove duplicate keywords field from Cargo.toml
2019-01-17 16:35:40 -08:00
puffybsd
56c1c02b84
Fix bugs in README example ( #441 )
...
Fix missing > in method return signature, undeclared variable, and
adds return type to match method signature.
2019-01-15 21:23:41 -08:00
Sean McArthur
94535ece88
add readme and keywords to Cargo.toml
2019-01-15 17:50:48 -08:00
Sean McArthur
a9e135412d
Add more details to README
2019-01-14 12:23:57 -08:00
Ben
68a4a3e63e
Add json fetch example to readme ( #438 )
...
Closes #428
2019-01-14 12:07:04 -08:00
Sean McArthur
10c0e64711
v0.9.8
2019-01-11 17:33:29 -08:00
Sean McArthur
4d221533a2
Switch trust-dns to an off-by-default optional feature
2019-01-11 17:30:10 -08:00
Sean McArthur
81b4d26682
Try to detect Certificate and Identity errors earlier
2019-01-11 15:43:00 -08:00
Sean McArthur
23e13304ef
Disable trust-dns on Windows
...
Closes #431
2019-01-11 12:34:03 -08:00
Sean McArthur
ed1a6d4614
Turn off verbose flag on AppVeyor
2019-01-11 11:42:27 -08:00
Sean McArthur
a8174feca4
v0.9.7
2019-01-10 13:58:23 -08:00
Sean McArthur
313d49c47a
update AppVeyor badge to use master branch
2019-01-10 13:55:50 -08:00
Sean McArthur
2649f9ab56
Remove trust-dns when target_os is Android
2019-01-10 13:52:35 -08:00
Sean McArthur
b71787be86
refactor DNS resolver construction
...
- System Conf is read as `ClientBuilder::build()` time, providing the
error earlier.
- If there is an error reading the resolve system conf, a better error
is reported.
- Resolver only needs to lock a mutex once to spawn the background task,
instead of every single `resolve` call.
2019-01-10 12:47:29 -08:00
Shou Ya
b129ab0bb4
fix multipart with unicode filename ( #420 )
2019-01-08 21:01:52 -08:00
Martin Taibr
5578c77597
Fix typos ( #422 )
2019-01-08 12:12:50 -08:00
Sean McArthur
3112d99b7c
v0.9.6
2019-01-07 15:44:37 -08:00
Sean McArthur
fa8736f851
remove unneeded features from tokio dependency
2019-01-07 15:37:18 -08:00
Sean McArthur
691bcfe894
improve general documentation
2019-01-07 14:20:39 -08:00
Sean McArthur
56eff821fd
refactor multipart to reduce duplicate code between sync and async
2019-01-07 13:40:04 -08:00
Kevin Wilson
4c21127f15
add async multipart request handling
2019-01-07 10:57:51 -08:00