Switch ureq to used forked chunked_transfer.

This commit is contained in:
Jacob Hoffman-Andrews
2022-11-27 22:32:15 -08:00
committed by Martin Algesten
parent 43a12cdf51
commit 6bef9daa8e
8 changed files with 9 additions and 12 deletions

View File

@@ -25,7 +25,7 @@ use std::io::Result as IoResult;
///
/// # Example
///
/// ```
/// ```no_compile
/// use chunked_transfer::Decoder;
/// use std::io::Read;
///

View File

@@ -21,7 +21,7 @@ use std::io::Write;
///
/// # Example
///
/// ```
/// ```no_compile
/// use chunked_transfer::Encoder;
/// use std::io::Write;
///

View File

@@ -12,7 +12,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![allow(dead_code)]
mod decoder;
pub use decoder::Decoder;