Migrate 20 crates to monorepo

gdbstub
gdbstub_arch
glam
gpio-cdev
grpcio-compiler
half
hex
hound
hyper-timeout
ident_case
indexmap
linkme-impl
mockall_derive
moveit
octets
openssl-macros
percore
petgraph
plotters
protobuf-json-mapping

Bug: http://b/339424309
Test: treehugger
Change-Id: I7d8f8274c3e37354a1d4fed43ca8cb89a0fce604
2 files changed
tree: 2876f0b1bb7a9dacc92098aac3a177f8030371f0
  1. examples/
  2. patches/
  3. src/
  4. Android.bp
  5. Cargo.toml
  6. Cargo.toml.orig
  7. LICENSE
  8. LICENSE-APACHE
  9. LICENSE-MIT
  10. METADATA
  11. MODULE_LICENSE_APACHE2
  12. OWNERS
  13. README.md
README.md

crates.io

hyper-timeout

A connect, read and write timeout aware connector to be used with hyper Client.

Problem

At the time this crate was created, hyper does not support timeouts. There is a way to do general timeouts, but no easy way to get connect, read and write specific timeouts.

Solution

There is a TimeoutConnector that implements the hyper::Connect trait. This connector wraps around HttpConnector or HttpsConnector values and provides timeouts.

Note: In hyper 0.11, a read or write timeout will return a broken pipe error because of the way tokio_proto::ClientProto works

Usage

Hyper version compatibility:

  • The master branch will track on going development for hyper.
  • The 0.4 release supports hyper 0.14.
  • The 0.3 release supports hyper 0.13.
  • The 0.2 release supports hyper 0.12.
  • The 0.1 release supports hyper 0.11.

Assuming you are using hyper 0.14, add this to your Cargo.toml:

[dependencies]
hyper-timeout = "0.4"

See the client example for a working example.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.