diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-14 17:36:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-14 17:36:34 -0800 |
commit | 3c8d2bde685d015721b1c0fd6f2a3ae54c156583 (patch) | |
tree | 0f770fccbe23bd5a410612678176b449651cd8ad /src/main.rs | |
parent | 765863e87aea725301d5f528b6de15bfa6022d46 (diff) |
Support request method and headers in fetch() (#1188)
Adds a general HttpHeader flatbuffer message for serializing requests
and responses.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 2c33583d0..6530c37fc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,7 @@ extern crate dirs; extern crate flatbuffers; extern crate getopts; +extern crate http; extern crate hyper; extern crate hyper_rustls; extern crate libc; |