Modify chunked crate for ureq use.

This commit is contained in:
Jacob Hoffman-Andrews
2022-11-27 18:17:01 -08:00
committed by Martin Algesten
parent fe3f1d550b
commit 43a12cdf51
3 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
// Copyright 2015 The tiny-http Contributors
// Copyright 2015 The rust-chunked-transfer Contributors
// Forked into ureq, 2022, from https://github.com/frewsxcv/rust-chunked-transfer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.

View File

@@ -1,5 +1,6 @@
// Copyright 2015 The tiny-http Contributors
// Copyright 2015 The rust-chunked-transfer Contributors
// Forked into ureq, 2022, from https://github.com/frewsxcv/rust-chunked-transfer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.

View File

@@ -14,7 +14,7 @@
// limitations under the License.
mod decoder;
pub use crate::decoder::Decoder;
pub use decoder::Decoder;
mod encoder;
pub use crate::encoder::Encoder;
pub use encoder::Encoder;